Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-anchor-position/anchor-position-sibling-index.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Anchor Positioning Test: anchor function with sibling-index()</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
body { margin: 0; }
#anchor {
anchor-name: --a;
width: 100px;
height: 100px;
}
#abs {
position-anchor: --a;
position: absolute;
top: anchor(calc(25% * sibling-index()));
width: 100px;
height: 100px;
background: teal;
}
</style>
<div>
<div id="anchor"></div>
<div id="abs"></div>
</div>
<script>
test(() => {
assert_equals(getComputedStyle(abs).top, "50px", "25% multiplied by 2 (sibling-index()) of 100px")
}, "Percentage based anchor() position with sibling-index()");
</script>