tor-browser

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

transform-scalex-001.html (804B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): scaleX(0.5)</title>
      5    <link rel="author" title="Clint Talbert" href="mailto:ctalbert@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/#two-d-transform-functions">
      8    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#funcdef-transform-scalex">
      9    <meta name="assert" content="This tests that scaleX(0.5) scales down a
     10    box's width by a factor of one-half.">
     11    <link rel="match" href="transform-scalex-ref.html">
     12    <style>
     13      div {
     14        background: green;
     15        width: 100px;
     16        height: 100px;
     17        transform: scaleX(0.5);
     18      }
     19    </style>
     20  </head>
     21  <body>
     22    <div></div>
     23  </body>
     24 </html>