Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-anchor-position/anchor-scroll-fixedpos-002.html
<!DOCTYPE html> <title>Tests that scroll adjustments of fixed-positioned elements are applied correctly</title> <link rel="author" href="mailto:wangxianzhu@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-anchor-1/"> <link rel="match" href="reference/anchor-scroll-fixedpos-002-ref.html"> <style> body { margin: 0; height: 2000px; } div { width: 100px; height: 100px; } #anchor { position: fixed; anchor-name: --a1; margin: 300px; background: orange; } #anchored { position: fixed; position-anchor: --a1; left: anchor(right); top: anchor(top); background: green; } </style> <div id="anchor"></div> <div id="anchored"></div> <script> document.documentElement.scrollTop = 200; </script>
/css/css-anchor-position/reference/anchor-scroll-fixedpos-002-ref.html
<!DOCTYPE html> <style> body { margin: 0; height: 2000px; } div { width: 100px; height: 100px; } #anchor { position: fixed; left: 300px; top: 300px; background: orange; } #anchored { position: fixed; left: 400px; top: 300px; background: green; } </style> <div id="anchor"></div> <div id="anchored"></div> <script> document.documentElement.scrollTop = 200; </script>