Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/geometry/parsing/cx-attribute-invalid.svg - WPT Dashboard Interop Dashboard
<?xml version="1.0" encoding="UTF-8"?>
width="800px" height="800px">
<title>SVG Geometry Properties: parsing the cx presentation attribute with invalid values</title>
<metadata>
<h:link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/types.html#presentation-attribute-css-value"/>
<h:meta name="assert" content="the cx presentation attribute rejects values outside '<length-percentage> | <number>' and keeps the initial computed value."/>
</metadata>
<circle id="target"/>
<h:script src="/resources/testharness.js"/>
<h:script src="/resources/testharnessreport.js"/>
<h:script src="support/attribute-testcommon.js"/>
<script><![CDATA[
test_invalid_attribute_value("cx", "auto", 0, "0px");
test_invalid_attribute_value("cx", "none", 0, "0px");
test_invalid_attribute_value("cx", "10px 20px", 0, "0px");
test_invalid_attribute_value("cx", "garbage", 0, "0px");
]]></script>
</svg>