summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-until-found-004.html
blob: 3ca6feb7a3dd41ab5067b952372962a6446cfda8 (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
<!doctype HTML>
<html>
<meta charset="utf8">
<title>hidden=until-found does not paint</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="help" href="https://github.com/WICG/display-locking">
<link rel="match" href="./resources/container-ref.html">
<meta name="assert" content="content-visibility subtrees are not painted">

<style>
#container {
  width: 150px;
  height: 150px;
  background: lightblue;
}
#child {
  width: 50px;
  height: 50px;
  background: lightgreen;
}
</style>

<div id=container hidden=until-found>
  Text.
  <div id=child></div>
  <span>inline child</span>
</div>
</html>