tor-browser

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

transform3d-backface-visibility-007.html (930B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Simple Backface-Visibility, scalez(-1)</title>
      5    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
      6    <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#propdef-backface-visibility">
      7    <meta name="assert" content="This is the same as
      8    transform3d-backface-visibility-001.html, except it uses scalez(-1) instead
      9    of rotatex(180deg).  scalez(-1) has no visible effect when applied by
     10    itself to a box, since the box's Z-coordinates are all 0, but it still
     11    causes it to be affected by 'backface-visibility'.">
     12    <link rel="match" href="transform-lime-square-ref.html">
     13    <style>div { height: 100px; width: 100px }</style>
     14  </head>
     15  <body>
     16    <div style="background: lime">
     17      <div style="background: red; backface-visibility: hidden;
     18        transform: scalez(-1)">
     19      </div>
     20    </div>
     21  </body>
     22 </html>