tor-browser

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

transform-rotate-004.html (1028B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): rotate(-45deg) rotate(100grad)</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-rotate">
      9    <meta name="assert" content="This is part of a series of tests that check
     10    that various combinations of rotate() with different units are equivalent
     11    to rotate(45deg).">
     12    <link rel="match" href="transform-rotate-001-ref.html">
     13    <meta name="fuzzy" content="maxDifference=0-13;totalPixels=0-10">
     14    <link rel="mismatch" href="transform-rotate-001-notref.html">
     15    <style>
     16      div {
     17        transform: rotate(-45deg) rotate(100grad);
     18        width: 100px;
     19        height: 100px;
     20      }
     21    </style>
     22  </head>
     23  <body>
     24    <div>Test Text</div>
     25  </body>
     26 </html>