tor-browser

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

svg-matrix-044.html (1844B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Transforms Test: SVG presentation attribute and matrix and scaling up and skewing down and right: 2 0.5 0.5 2 50 0</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 up vertically and horizontally and skewed down vertically and right 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="100" height="100">
     24                <rect x="50" y="50" width="50" height="50" fill="red"/>
     25                <rect x="0" y="50" width="50" height="50" fill="red"/>
     26                <rect x="0" y="0" width="50" height="50" fill="green"/>
     27                <rect x="50" y="0" width="50" height="50" 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 width="100" height="100" fill="url(#coloredBoxes)" transform="matrix(2 0.5 0.5 2 50 0)"/>
     36        </g>
     37    </svg>
     38 </body>
     39 </html>