23 lines
411 B
HTML
23 lines
411 B
HTML
<!doctype HTML>
|
|
<html>
|
|
<meta charset="utf8">
|
|
<title>Content Visibility: hidden effect on table types (reference)</title>
|
|
<link rel="author" title="Rob Buis" href="mailto:rbuis@igalia.com">
|
|
|
|
<style>
|
|
table {
|
|
width: 150px;
|
|
height: 150px;
|
|
background: lightblue;
|
|
}
|
|
</style>
|
|
|
|
<table id=table>
|
|
<tr id=tr>
|
|
<td id=td>
|
|
<div>Test passes if this text is visible.</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</html>
|