tor-browser

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

transform3d-backface-visibility-006.html (908B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Backface-Visibility With Transformed Parent
      5    in Same Rendering Context</title>
      6    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
      7    <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#propdef-backface-visibility">
      8    <meta name="assert" content="This is the same as
      9    transform3d-backface-visibility-005.html, except that the parent has
     10    'transform-style: preserve-3d'.  Thus the child is affected by the parent's
     11    transform and should not be visible.">
     12    <link rel="match" href="transform-lime-square-ref.html">
     13    <style>div { width: 100px; height: 100px }</style>
     14  </head>
     15  <body>
     16    <div style="transform: rotateX(180deg); transform-style: preserve-3d;
     17      background: lime">
     18      <div style="backface-visibility: hidden; background: red">
     19      </div>
     20    </div>
     21  </body>
     22 </html>