forked from w3c/csswg-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvg-origin-length-pt-005.html
31 lines (31 loc) · 1.22 KB
/
svg-origin-length-pt-005.html
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
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms Test: SVG presentation attribute transform-origin with length values - 40pt 40pt</title>
<link rel="author" title="Dirk Schulze" href="mailto:[email protected]">
<link rel="help" href="http://www.w3.org/TR/css3-transforms/#transform-origin-property">
<link rel="match" href="reference/svg-origin-length-pt-ref.html">
<meta name="flags" content="svg">
<meta name="assert" content="The transform-origin should translate the origin by (40pt,40pt) temporarily.">
<style type="text/css">
svg {
width: 200px;
height: 200px;
}
</style>
</head>
<body>
<p>The test passes if there is a vertical fuchsia stripe to the left of an orange stripe. You should see no red.</p>
<svg>
<!-- Fill with Gradient to avoid false positive. -->
<defs>
<linearGradient id="grad" x2="0%" y2="100%">
<stop offset="50%" stop-color="orange"/>
<stop offset="50%" stop-color="fuchsia"/>
</linearGradient>
</defs>
<rect x="1" y="1" width="104.666666667" height="104.666666667" fill="red"/>
<rect width="80pt" height="80pt" fill="url(#grad)" transform="rotate(90deg)" transform-origin="40pt 40pt"/>
</svg>
</body>
</html>