tor-browser

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

transform3d-perspective-origin-001.html (861B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): perspective-origin</title>
      5    <link rel="author" title="Matt Woodrow" href="mailto:mwoodrow@mozilla.com">
      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-perspective-origin">
      8    <meta name="assert" content="This tests that 'perspective-origin: 0 0' is
      9    the same as 'perspective-origin: top left', different from no
     10    'perspective-origin', and different from no perspective or no transform.">
     11    <link rel="match" href="transform3d-perspective-origin-ref.html">
     12  </head>
     13  <body>
     14    <div style="perspective: 1000px; perspective-origin: 0 0;">
     15      <div style="transform: rotatex(45deg); width: 100px; height: 100px;
     16        background: lime">
     17      </div>
     18    </div>
     19  </body>
     20 </html>