tor-browser

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

css-skew-002.html (1132B)


      1 <!DOCTYPE html>
      2 <html>
      3 <!-- Submitted from TestTWF Paris -->
      4 <head>
      5    <title>CSS Test: skew function part 2</title>
      6    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
      7    <link rel="author" title="Adrien Pachkoff" href="mailto:adrien@pachkoff.com">
      8    <link rel="match" href="css-skew-002-ref.html">
      9    <meta name="fuzzy" content="maxDifference=5-36;totalPixels=12-174">
     10    <style type="text/css">
     11        div {
     12            top:0px;
     13            left:0px;
     14            position:absolute;
     15            height: 150px;
     16            width: 150px;
     17            background-color:green;
     18            transform-origin: 0 0;
     19            transform: skew(25deg, 35deg);
     20        }
     21        svg {
     22            top:5px;
     23            left:5px;
     24            position:absolute;
     25            height: 253.667px;
     26            width: 218.333px;
     27        }
     28    </style>
     29 </head>
     30 <body>
     31    <p>The test passes if there is a green quadrilateral and no red.</p>
     32    <svg>
     33        <path
     34       d="M 211.84314,245.80529 66.913984,144.99668 0,0 145.02994,100.74384 z" fill="red" />
     35    </svg>
     36    <div> </div>
     37 </body>
     38 </html>