Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype HTML>
<html class="reftest-wait">
<meta charset="utf8">
<title>CSS Content Visibility: hidden starts painting when removed (composited child)</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="match" href="container-with-child-ref.html">
<meta name="assert" content="content-visibility hidden subtrees start painting when hidden is removed">
<script src="/common/reftest-wait.js"></script>
<style>
#container {
width: 150px;
height: 150px;
background: lightblue;
}
.hidden {
content-visibility: hidden;
}
#child {
width: 50px;
height: 50px;
background: green;
will-change: transform;
}
</style>
<div id=container class=hidden>
Test passes if you can see this text and a green box.
<div id=child></div>
</div>
<script>
function runTest() {
const container = document.getElementById("container");
container.classList.remove("hidden");
requestAnimationFrame(takeScreenshot);
}
window.onload = runTest;
</script>
</html>