Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/dom/elements/global-attributes/the-anchor-attribute-003-crash.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Tests that using the `anchor` attribute with inline containing block does not crash</title>
<link rel="author" href="mailto:xiaochengh@chromium.org">
<style>
.target {
position: absolute;
top: anchor(top);
left: anchor(right);
}
</style>
<div id="anchor">foo</div>
<span style="position: relative">
<div anchor="anchor2" class="target">bar</div>
</span>
<span style="position: sticky">
<div anchor="anchor2" class="target">bar</div>
</span>
<span style="backdrop-filter: blur(1px)">
<div anchor="anchor2" class="target">bar</div>
</span>