Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-contain/content-visibility/content-visibility-055.html
<!doctype HTML> <html class="reftest-wait"> <meta charset="utf8"> <title>Content Visibility: anchor links prevented</title> <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility"> <link rel="match" href="spacer-and-container-scrolled-ref.html"> <meta name="assert" content="anchor link scroll not prevented when the target is hidden and activatable"> <script src="/common/reftest-wait.js"></script> <style> .spacer { width: 150px; height: 300vh; background: lightblue; } #container { width: 150px; height: 150px; background: green; content-visibility: auto; } #target { width: 150px; height: 100px; } </style> <div class="spacer"></div> <div id="container"><div id="target">Test passes if this is on screen.</div></div> <script> function runTest() { location.href += "#target"; requestAnimationFrame(takeScreenshot); } window.onload = () => { requestAnimationFrame(runTest); }; </script> </html>
/css/css-contain/content-visibility/spacer-and-container-scrolled-ref.html
<!doctype HTML> <html> <meta charset="utf8"> <title>Content Visibility: spacer and a container, scrolled to container (reference)</title> <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility"> <style> .spacer { width: 150px; height: 300vh; background: lightblue; } #container { width: 150px; height: 150px; background: green; } </style> <div class="spacer"></div> <div id="container">Test passes if this is on screen.</div> <script> onload = () => container.scrollIntoView(); </script> </html>