blob: 4eee5444867f6670155327d357dbe3feaea3b309 [file] [log] [blame]
<svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml">
<title>SVG Paint Servers: parsing stop-color with invalid values</title>
<metadata>
<h:link rel="help" href="https://svgwg.org/svg2-draft/pservers.html#StopColorProperty"/>
</metadata>
<g id="target" style="color: blue"></g>
<h:script src="/resources/testharness.js"/>
<h:script src="/resources/testharnessreport.js"/>
<h:script src="/css/support/parsing-testcommon.js"/>
<script><![CDATA[
test_invalid_value("stop-color", "auto");
test_invalid_value("stop-color", "123");
test_invalid_value("stop-color", "#12");
test_invalid_value("stop-color", "#123456789");
test_invalid_value("stop-color", "rgb");
test_invalid_value("stop-color", "rgb(1)");
test_invalid_value("stop-color", "rgb(1,2,3,4,5)");
test_invalid_value("stop-color", "hsla(1,2,3,4,5)");
test_invalid_value("stop-color", "rgb(10%, 20, 30%)");
test_invalid_value("stop-color", "rgba(-2, 300, 400%, -0.5)");
]]></script>
</svg>