Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/content-visibility/content-visibility-056.html - WPT Dashboard Interop Dashboard
<!doctype HTML>
<html class="reftest-wait">
<meta charset="utf8">
<title>Content Visibility: scrollIntoView prevented</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="match" href="spacer-and-container-ref.html">
<meta name="assert" content="scrollIntoView is prevented when the target is hidden">
<script src="/common/reftest-wait.js"></script>
<style>
.spacer {
width: 150px;
height: 3000px;
background: lightblue;
}
#container {
width: 150px;
height: 150px;
background: red;
content-visibility: hidden;
}
#target {
width: 100px;
height: 100px;
background: pink;
}
</style>
<div class="spacer">Test passes if there is no red.</div>
<div id="container"><div id="target">FAIL</div></div>
<script>
function runTest() {
document.getElementById("target").scrollIntoView();
requestAnimationFrame(takeScreenshot);
}
window.onload = () => { requestAnimationFrame(runTest); };
</script>
</html>