Status: FAIL | Duration: 48ms | Subtests: 0/4 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| x="auto" should be an invalid attribute value (ignored) | FAIL | cannot convert 'null' or 'undefined' to object |
| x="none" should be an invalid attribute value (ignored) | FAIL | cannot convert 'null' or 'undefined' to object |
| x="10px 20px" should be an invalid attribute value (ignored) | FAIL | cannot convert 'null' or 'undefined' to object |
| x="garbage" should be an invalid attribute value (ignored) | FAIL | cannot convert 'null' or 'undefined' to object |
/svg/geometry/parsing/x-attribute-invalid.svg
<?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml" width="800px" height="800px"> <title>SVG Geometry Properties: parsing the x presentation attribute with invalid values</title> <metadata> <h:link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/geometry.html#X"/> <h:link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/types.html#presentation-attribute-css-value"/> <h:link rel="help" href="https://github.com/web-platform-tests/wpt/issues/61017"/> <h:meta name="assert" content="the x presentation attribute rejects values outside '<length-percentage> | <number>' and keeps the initial computed value."/> </metadata> <rect 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("x", "auto", 0, "0px"); test_invalid_attribute_value("x", "none", 0, "0px"); test_invalid_attribute_value("x", "10px 20px", 0, "0px"); test_invalid_attribute_value("x", "garbage", 0, "0px"); ]]></script> </svg>