tor-browser

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

transform-matrix-006.html (885B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): matrix()/skewY()</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-matrix">
      9    <meta name="assert" content='This tests that skewY() has the same effect as
     10    an equivalent matrix().'>
     11    <link rel="match" href="transform-matrix-006-ref.html">
     12    <link rel="mismatch" href="transform-matrix-005-notref.html">
     13    <style>
     14      div {
     15        transform: matrix(1, 1, 0, 1, 0, 0);
     16        width: 100px;
     17        height: 100px;
     18        background: gold;
     19      }
     20    </style>
     21  </head>
     22  <body>
     23    <div></div>
     24  </body>
     25 </html>