tor-browser

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

content-visibility-094-ref.html (411B)


      1 <!doctype HTML>
      2 <html>
      3 <meta charset="utf8">
      4 <title>Content Visibility: hidden effect on table types (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 }
     13 </style>
     14 
     15 <table id=table>
     16  <tr id=tr>
     17    <td id=td>
     18      <div>Test passes if this text is visible.</div>
     19    </td>
     20  </tr>
     21 </table>
     22 
     23 </html>