tor-browser

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

css-skew-002-ref.html (637B)


      1 <!DOCTYPE html>
      2 <html>
      3 <!-- Submitted from TestTWF Paris -->
      4 <head>
      5    <title>CSS Test Reference: skew function part 2</title>
      6    <link rel="author" title="Adrien Pachkoff" href="mailto:adrien@pachkoff.com">
      7    <style type="text/css">
      8        div {
      9            top:0px;
     10            left:0px;
     11            position:absolute;
     12            height: 150px;
     13            width: 150px;
     14            background-color:green;
     15            transform-origin: 0 0;
     16            transform: skew(25deg, 35deg);
     17        }
     18    </style>
     19 </head>
     20 <body>
     21    <p>The test passes if there is a green quadrilateral and no red.</p>
     22    <div> </div>
     23 </body>
     24 </html>