tor-browser

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

transform3d-preserve3d-008.html (1095B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Preserve-3D with 'overflow: hidden'</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/#transform-style-property">
      7    <meta name="assert" content="This is identical to
      8    transform3d-preserve3d-006.html, except that it has 'transform-style:
      9    preserve-3d; overflow: hidden' specified on the parent element.
     10    'transform-style: preserve-3d' would normally make the result different,
     11    but 'overflow: hidden' overrides its effect and causes it to work the same
     12    as 'transform-style: flat'.">
     13    <meta name="fuzzy" content="maxDifference=0-55;totalPixels=0-299">
     14    <link rel="match" href="transform-lime-square-ref.html">
     15  </head>
     16  <body>
     17    <div style="transform: rotatex(45deg); transform-origin: top;
     18      transform-style: preserve-3d; overflow: hidden">
     19      <div style="transform: rotatex(-45deg); transform-origin: top;
     20        height: 200px; width: 100px; background: lime">
     21    </div></div>
     22  </body>
     23 </html>