Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham
2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html><head>
<title>CSS Transforms Test: SVG gradientTransform presentation attribute and translation-value argument with percentage unit on translateX - has no effect</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/#svg-gradient-transform-pattern-transform" rel="help">
<link href="reference/svg-gradientTransform-relative-ref.htm" rel="match">
<meta content="svg" name="flags">
<meta content="Arguments in percentage units in gradientTransform functions should have no affect. The gradient in the test should be not be moved." name="assert">
<style type="text/css">
svg {
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<p>The test passes if there is a vertical green bar next to a vertical blue bar.</p>
<svg>
<defs>
<linearGradient y1="0%" x1="0%" gradientTransform="translateX(25%)" id="grad">
<stop stop-color="green" offset="50%"></stop>
<stop stop-color="blue" offset="50%"></stop>
</linearGradient>
</defs>
<rect y="0" width="100" height="100" x="0" fill="url(#grad)"></rect>
</svg>
</body></html>