blob: 237fbe2ede4f6d824702a83b14ce136115d1d1c0 [file] [log] [blame]
<!doctype HTML>
<html class="reftest-wait">
<meta charset="utf8">
<title>content-visibility changes after a delay</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="help" href="https://github.com/WICG/display-locking">
<link rel="match" href="../container-ref.html">
<meta name="assert" content="scrollIntoView has no effect on hidden-matchable">
<script src="/common/reftest-wait.js"></script>
<style>
#container {
width: 150px;
height: 150px;
background: lightblue;
}
#child {
width: 50px;
height: 50px;
background: lightgreen;
}
.hidden {
content-visibility: hidden-matchable;
}
</style>
<div id=container class=hidden>
Text.
<div id=child></div>
</div>
<script>
function runTest() {
document.getElementById("container").scrollIntoView();
takeScreenshot();
}
window.onload = requestAnimationFrame(() => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
runTest();
});
});
});
</script>
</html>