tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

content-visibility-095-ref.html (452B)


      1 <!doctype HTML>
      2 <html>
      3 <meta charset="utf8">
      4 <title>Content Visibility: hidden table with positioned children (reference)</title>
      5 <link rel="author" title="Rob Buis" href="mailto:rbuis@igalia.com">
      6 
      7 <style>
      8 #table {
      9  width: 150px;
     10  height: 150px;
     11  background: lightblue;
     12  contain: content;
     13 }
     14 #positioned {
     15  position: absolute;
     16 }
     17 </style>
     18 
     19 <table id=table>
     20  <td>
     21    <div id=positioned>Test passes if this text is visible.</div>
     22  </td>
     23 </table>