tor-browser

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

content-visibility-021-ref.html (690B)


      1 <!doctype HTML>
      2 <html>
      3 <meta charset="utf8">
      4 <title>Content Visibility: hidden image (reference)</title>
      5 <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
      6 <link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
      7 
      8 <style>
      9 div {
     10  background: blue;
     11  color: white;
     12 }
     13 .myimg {
     14  display: inline-block;
     15  width: 400px;
     16  height: 200px;
     17  background: lightblue;
     18  border: 1px solid black;
     19 }
     20 </style>
     21 
     22 <div>Test passes if there are two identical light blue boxes below and no image in them.</div>
     23 <div class="myimg"></div>
     24 <div class="myimg"></div>
     25 <div>Test passes if there are two identical light blue boxes above and no image in them.</div>