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-with-top-layer-000.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html class="reftest-wait">
<meta charset="utf8">
<title>CSS Content Visibility: dialog doesn't show when hidden</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="match" href="container-ref.html">
<meta name="assert" content="top layer dialogs don't render when in skipped subtrees">
<script src="/common/reftest-wait.js"></script>
<style>
.box { width: 150px; height: 150px; background: lightblue }
.hidden { content-visibility: hidden }
</style>
<div class="box hidden">
Fail
<dialog id=dialog>Fail<div id=inner></div></dialog>
</div>
<script>
function runTest() {
dialog.showModal();
takeScreenshot();
}
onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest));
</script>