summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/content-visibility/content-visibility-with-top-layer-004.html
blob: e21b11e92db1fe8e7684536d04371ae077c8e66a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html class="reftest-wait">
<meta charset="utf8">
<title>CSS Content Visibility: dialog shows under c-v auto</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="spacer-with-top-layer-ref.html">
<meta name="assert" content="top layer dialogs render under c-v auto">

<script src="/common/reftest-wait.js"></script>

<style>
.box { width: 100px; height: 100px; border: 1px solid black; }
.auto { content-visibility: auto }
.spacer { width: 10px; height: 3000px; background: lightblue; }
</style>

<div class=spacer></div>
<div id=container class="box auto">
content
<dialog id=dialog>PASS<div id=inner></div></dialog>
</div>

<script>
function runTest() {
  dialog.showModal();
  takeScreenshot();
}

onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest));
</script>