Status: FAIL | Duration: 51ms | Subtests: 0/2 | Open test on wpt.live | wpt.fyi
Data from commit:
96ff533 Remove hidden nodes from the acccessibility tree (#823) (2026-09-07)
| Subtest | Status | Message |
|---|---|---|
| path.getPathData() with missing d attribute returns [] | FAIL | not a callable function |
| path.getPathData() with empty d attribute returns [] | FAIL | not a callable function |
/svg/path/interfaces/getPathData-empty-or-missing-d.html
<!doctype html> <title>SVGPathElement.getPathData() with empty or missing d attribute</title> <link rel="help" href="https://svgwg.org/specs/paths/#InterfaceSVGPathData"> <link rel="author" title="Virali Purbey" href="mailto:viralipurbey@microsoft.com"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="support/getPathData-helpers.js"></script> <svg> <path id="pathMissingD"/> <path id="pathEmptyD" d=""/> </svg> <script> test(() => { assert_path_data_equals(pathMissingD.getPathData(), []); }, "path.getPathData() with missing d attribute returns []"); test(() => { assert_path_data_equals(pathEmptyD.getPathData(), []); }, "path.getPathData() with empty d attribute returns []"); </script>