tor-browser

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

transform-rotate-007.html (1021B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Rotated Simple Box</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 tests that rotating a simple rectangle by
     10    90 degrees produces another rectangle of the appropriate dimensions.">
     11    <link rel="match" href="transform-rotate-007-ref.html">
     12    <meta name="fuzzy" content="maxDifference=0-64;totalPixels=0-4">
     13    <link rel="mismatch" href="transform-rotate-007-notref.html">
     14    <style>
     15      div {
     16        width: 100px;
     17        height: 200px;
     18        border: 1px solid black;
     19        transform: translate(50px, -50px) rotate(-90deg);
     20      }
     21    </style>
     22  </head>
     23  <body>
     24    <div></div>
     25  </body>
     26 </html>