blob: b757c50c6c1f10ecd8cb0a19d8fcf0c30e9c828b [file] [log] [blame]
<!doctype HTML>
<html class="reftest-wait">
<meta charset="utf8">
<title>CSS Content Visibility: hidden starts painting when removed (composited with a composited child)</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="container-with-child-ref.html">
<meta name="assert" content="content-visibility subtrees start painting when hidden is removed">
<script src="/common/reftest-wait.js"></script>
<style>
#container {
width: 150px;
height: 150px;
background: lightblue;
will-change: transform;
}
.hidden {
content-visibility: hidden;
}
#child {
width: 50px;
height: 50px;
background: lightgreen;
will-change: transform;
}
</style>
<div id=container class=hidden>
Text.
<div id=child></div>
</div>
<script>
function runTest() {
const container = document.getElementById("container");
container.classList.remove("hidden");
requestAnimationFrame(takeScreenshot);
}
window.onload = runTest;
</script>
</html>