summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/content-visibility/content-visibility-with-popover-top-layer-005.html
blob: 264d7b317e0a3fb2fc655c6cceda29d2fe252f9d (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: popover shows under c-v auto</title>
<link rel="author" title="Rob Buis" href="mailto:rbuis@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
<link rel="match" href="spacer-with-popover-top-layer-ref.html">
<meta name="assert" content="top layer popovers 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">
content
<div popover id=popover><div id=inner class="auto">PASS</div></div>
</div>

<script>
function runTest() {
  popover.showPopover();
  takeScreenshot();
}

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