Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-anchor-position/chrome-380321441-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Chrome crash while flipping position-area:start</title>
<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>