wpt / css / css-anchor-position / chrome-380321441-crash.html

Status: PASS | Duration: 2ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi

/css/css-anchor-position/chrome-380321441-crash.html

<!DOCTYPE html>
<title>Chrome crash while flipping position-area:start</title>
<link rel="help" href="https://crbug.com/380321441">
<style>
  #anchor {
    anchor-name: --a;
  }
  #anchored {
    position: absolute;
    position-anchor: --a;
    position-area: start;
    position-try-fallbacks: flip-block;
    width: 2px;
    height: 100px;
    background: teal;
  }
</style>
<div id="anchor">Anchor</div>
<div id="anchored"></div>