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/anchor-scope-shadow-all.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Anchor Positioning: anchor-scope:all is tree-scoped</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
#host::part(scope) {
/* This should have no effect, because 'all' is tree-scoped,
and specified in a different tree-scope than the anchor names
in the shadow. */
anchor-scope: all;
}
</style>
<div id=host>
<template shadowrootmode=open>
<style>
.anchored {
background: coral;
position: absolute;
top: anchor(bottom, 1px);
position-anchor: --a;
width: 5px;
height: 5px;
}
.anchor {
background: skyblue;
height: 10px;
anchor-name: --a;
}
.cb {
position: relative;
width: 200px;
height: 200px;
border: 1px solid black;
}
.scope {
anchor-scope: --a;
}
</style>
<div class=cb>
<div class=anchor></div>
<div part=scope>
<div class=anchored></div>
</div>
</div>
</template>
</div>
<script>
test((t) => {
let e = host.shadowRoot.querySelector('.anchored');
assert_equals(getComputedStyle(e).top, '10px');
}, 'anchor-scope:all is tree-scoped');
</script>