chromium/third_party/blink/web_tests/external/wpt/css/css-transforms/gradientTransform/svg-gradientTransform-001.html

<!DOCTYPE html>
<html>
<head>
    <title>CSS Transforms Test: SVG gradientTransform presentation attribute and translateX with translation-value argument without unit</title>
    <link rel="author" title="Rebecca Hauck" href="mailto:[email protected]">
    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-transform">
    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions">
    <link rel="help" href="https://www.w3.org/TR/css-transforms-1/#svg-transform-functions">
    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#svg-gradient-transform-pattern-transform">
    <link rel="match" href="reference/svg-gradientTransform-ref.html">
    <meta name="flags" content="svg">
    <meta name="assert" content="The gradientTransform attribute must support functions with unit less arguments for translation-value. The gradient in the test should be moved 25 pixels in the X direction resulting in a solid green rect.">
    <meta name="fuzzy" content="maxDifference=0-1; totalPixels=0-4400">
    <style type="text/css">
    svg {
        width: 100px;
        height: 100px;
    }
    </style>
</head>
<body>
    <p>The test passes if there is a green square and no red.</p>
    <svg>
        <defs>
            <linearGradient id="grad" x1="0%" y1="0%" gradientTransform="translate(50 0)">
                <stop offset="50%" stop-color="green"/>
                <stop offset="50%" stop-color="red"/>
            </linearGradient>
        </defs>
        <rect fill="url(#grad)" x="0" y="0" width="100" height="100"/>
    </svg>
</body>
</html>