aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-transforms-1_dev/xhtml1/svg-matrix-047.xht
blob: 85519930075e4b41cbedd26a5d560659296c14c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
    <title>CSS Transforms Test: SVG presentation attribute and matrix and flipping up, scaling down, and skewing up and left with scientific numbers with negative exponents: 0.5 -5e-1 0 -5e-1 250 100</title>
    <link href="mailto:rhauck@adobe.com" rel="author" title="Rebecca Hauck" />
    <link href="http://www.w3.org/TR/css-transforms-1/#svg-transform" rel="help" />
    <link href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions" rel="help" />
		<link href="http://www.w3.org/TR/css-transforms-1/#funcdef-matrix" rel="help" />
    <link href="reference/svg-matrix-clipped-rect-ref.xht" rel="match" />
    <meta content="svg" name="flags" />
    <meta content="The matrix function must support scientific numbers with negative exponents. The rect in the test should be flipped down, scaled down, and skewed up vertically and left horizontally." name="assert" />
    <style type="text/css">
        svg {
            width: 400px;
            height: 400px;
        }
    </style>
</head>
<body>
    <p>The test passes if you see a green square and no red.</p>
    <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
            <pattern width="400" patternUnits="userSpaceOnUse" y="0" x="0" id="coloredBoxes" height="400">
                <rect y="200" width="200" fill="red" x="200" height="200"></rect>
                <rect y="200" width="200" fill="green" x="0" height="200"></rect>
                <rect y="0" width="200" fill="red" x="0" height="200"></rect>
                <rect y="0" width="200" fill="red" x="200" height="200"></rect>
            </pattern>
            <!-- Clip a rect to avoid antialiasing issues and to isolate the green portion of the pattern-->
            <clipPath id="clip">
                <rect y="50" width="40" height="40" x="100"></rect>
            </clipPath>
        </defs>
        <g clip-path="url(#clip)">
            <rect width="400" height="400" fill="url(#coloredBoxes)" transform="matrix(0.5 -5e-1 0 -5e-1 250 100)" x="-450"></rect>
        </g>
    </svg>


</body></html>