1
0
Fork 0
firefox/testing/web-platform/tests/css/css-contain/content-visibility/content-visibility-095-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

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>