summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/content-visibility/container-with-child-ref.html
blob: d9d6ad19436bdc0dff98f316aba8a25d8504523e (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
<!doctype HTML>
<html>
<meta charset="utf8">
<title>CSS Content Visibility: container with child and text (reference)</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">

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

<div id=container>
  Test passes if you can see this text and a green box.
  <div id=child></div>
</div>