tor-browser

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

transform3d-perspective-001.html (767B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): perspective()</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/#perspective-property">
      7    <meta name="assert" content="This tests that the perspective() transform
      8    works the same as an equivalent 'perspective' property.">
      9    <link rel="match" href="transform3d-perspective-001-ref.html">
     10    <link rel="mismatch" href="transform-lime-square-ref.html">
     11  </head>
     12  <body>
     13    <div style="height: 100px; width: 100px; background: lime;
     14      transform: translatey(50%) perspective(1000px) translatey(-50%)
     15      rotatex(45deg) scaley(1.41421356); transform-origin: top">
     16    </div>
     17  </body>
     18 </html>