mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab
This commit is contained in:
parent
1a81b18b9f
commit
2c9faf5363
91915 changed files with 5979820 additions and 0 deletions
|
@ -0,0 +1,39 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<title>CSS Transforms Test: SVG presentation attribute and matrix and skewing up and right: 1 0.5 -0.5 1 100 0</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.htm" rel="match">
|
||||
<meta content="svg" name="flags">
|
||||
<meta content="The rect in the test should be skewed up vertically and right 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>
|
||||
<defs>
|
||||
<pattern width="200" patternUnits="userSpaceOnUse" y="0" x="0" id="coloredBoxes" height="200">
|
||||
<rect y="100" width="100" fill="red" x="100" height="100"></rect>
|
||||
<rect y="100" width="100" fill="red" x="0" height="100"></rect>
|
||||
<rect y="0" width="100" fill="green" x="0" height="100"></rect>
|
||||
<rect y="0" width="100" fill="red" x="100" height="100"></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="200" fill="url(#coloredBoxes)" transform="matrix(1 0.5 -0.5 1 100 0)" height="200"></rect>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
||||
</body></html>
|
Loading…
Add table
Add a link
Reference in a new issue