blob: 3e7d8cd92b328e3f6335be320336420603e7c08d (
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
|
<!doctype HTML>
<html>
<meta charset="utf8">
<title>Content Visibility: hidden table with positioned children (reference)</title>
<link rel="author" title="Rob Buis" href="mailto:rbuis@igalia.com">
<style>
#table {
width: 150px;
height: 150px;
background: lightblue;
contain: content;
}
#positioned {
position: absolute;
}
</style>
<table id=table>
<td>
<div id=positioned>Test passes if this text is visible.</div>
</td>
</table>
|