tor-browser

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

transform3d-translatez-001.html (1062B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): translatez() vs. 'transform-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-1/#transform-origin-property">
      8    <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#three-d-transform-functions">
      9    <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#funcdef-translatez">
     10    <meta name="assert" content="This tests that translatez(+-10px) before and
     11    after rotatex() is the same as an equivalent 'transform-origin', and
     12    different from translatez(+-20px).">
     13    <link rel="match" href="transform3d-translatez-ref.html">
     14    <link rel="mismatch" href="transform3d-translatez-notref.html">
     15  </head>
     16  <body>
     17    <div style="transform: translatez(-10px) rotatex(45deg) translatez(10px); transform-origin: 0 0 0; width: 100px; height: 100px;">
     18      Test Text
     19    </div>
     20  </body>
     21 </html>