tor-browser

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

svg-matrix-045.html (1894B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Transforms Test: SVG presentation attribute and matrix and scaling down and skewing up and left: 0.75 -0.5 -0.5 0.75 190 150</title>
      5    <link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
      6    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
      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    <link rel="match" href="reference/svg-matrix-clipped-rect-ref.html">
     10    <meta name="flags" content="svg">
     11    <meta name="assert" content="The rect in the test should be scaled down vertically and horizontally and skewed up vertically and left horizontally.">
     12    <style type="text/css">
     13        svg {
     14            width: 400px;
     15            height: 400px;
     16        }
     17    </style>
     18 </head>
     19 <body>
     20    <p>The test passes if you see a green square and no red.</p>
     21    <svg>
     22        <defs>
     23            <pattern id="coloredBoxes" patternUnits="userSpaceOnUse" x="0" y="0" width="400" height="400">
     24                <rect x="200" y="200" width="200" height="200" fill="red"/>
     25                <rect x="0" y="200" width="200" height="200" fill="red"/>
     26                <rect x="0" y="0" width="200" height="200" fill="green"/>
     27                <rect x="200" y="0" width="200" height="200" fill="red"/>
     28            </pattern>
     29            <!-- Clip a rect to avoid antialiasing issues and to isolate the green portion of the pattern-->
     30            <clipPath id="clip">
     31                <rect x="100" y="50" width="40" height="40"/>
     32            </clipPath>
     33        </defs>
     34        <g clip-path="url(#clip)">
     35            <rect x="-450" y="-450" width="400" height="400" fill="url(#coloredBoxes)" transform="matrix(0.75 -0.5 -0.5 0.75 190 150)"/>
     36        </g>
     37    </svg>
     38 </body>
     39 </html>