24 lines
452 B
HTML
24 lines
452 B
HTML
<!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>
|
|
|