summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/content-visibility/content-visibility-with-popover-top-layer-001.html
blob: fb3c9096da6305883ff42ce59981f34ad1f4b112 (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
<!doctype html>
<html class="reftest-wait">
<meta charset="utf8">
<title>CSS Content Visibility: popover doesn't show when hidden after render</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="container-ref.html">
<meta name="assert" content="top layer popovers 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 id=container class=box>
Fail
<div popover id=popover>Fail<div id=inner></div></div>
</div>

<script>
function runTest() {
  container.classList.add("hidden");
  popover.showPopover();
  takeScreenshot();
}

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