tor-browser

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

transform-translate-003.html (867B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): translate(25px, 25px) translate(25px, 25px)</title>
      5    <link rel="author" title="Keith Schwarz" href="mailto:keith@keithschwarz.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/#two-d-transform-functions">
      8    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-transform-translate">
      9    <meta name="assert" content='This tests that translate(25px, 25px)
     10    translate(25px, 25px) is the same as relative positioning by 50px toward
     11    the bottom right.'>
     12    <link rel="match" href="transform-translate-ref.html">
     13    <style>
     14      div {
     15        transform: translate(25px, 25px) translate(25px, 25px);
     16      }
     17    </style>
     18  </head>
     19  <body>
     20    <div>Test Text</div>
     21  </body>
     22 </html>