tor-browser

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

backface-visibility-001.html (678B)


      1 <!DOCTYPE HTML>
      2 <link rel="author" title="Chris Harrelson" href="mailto:chrishtr@google.com">
      3 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property">
      4 <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#propdef-backface-visibility">
      5 <link rel="match" href="backface-visibility-001.ref.html">
      6 <meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-2">
      7 <meta name="assert" content="backface-visibility should have no effect when no transforms are present">
      8 <style>
      9 .box {
     10    border: 1px solid black;
     11    width: 200px;
     12    height: 200px;
     13    backface-visibility: hidden;
     14 }
     15 </style>
     16 <div class="box">
     17    This text should be visible
     18 </div>