chromium/third_party/blink/web_tests/external/wpt/css/css-contain/content-visibility/content-visibility-095-ref.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:[email protected]">

<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>