wpt / svg / path / property / serialization.svg

Status: FAIL | Duration: 66ms | Subtests: 5/10 | Open test on wpt.live | wpt.fyi

Data from commit:
96ff533 Remove hidden nodes from the acccessibility tree (#823) (2026-09-07)

SubtestStatusMessage
e.style['d'] = "path(\"m 10 20 q 30 60 40 50 q 100 70 90 80\")" should set the property valuePASS
Property d value 'path("m 10 20 q 30 60 40 50 q 100 70 90 80")'FAILassert_equals: expected "path(\"M 10 20 Q 40 80 50 70 Q 150 140 140 150\")" but got "path(\"m 10 20 q 30 60 40 50 q 100 70 90 80\")"
e.style['d'] = "path(\"M 0 0 L 100 100 m 0 100 l 100 0 Z l 160 20 Z\")" should set the property valuePASS
Property d value 'path("M 0 0 L 100 100 m 0 100 l 100 0 Z l 160 20 Z")'FAILassert_equals: expected "path(\"M 0 0 L 100 100 M 100 200 L 200 200 Z L 260 220 Z\")" but got "path(\"M 0 0 L 100 100 m 0 100 l 100 0 Z l 160 20 Z\")"
e.style['d'] = "path(\"m 10 20 l 20 30 Z l 50 60 Z m 70 80 l 90 60 Z t 70 120\")" should set the property valuePASS
Property d value 'path("m 10 20 l 20 30 Z l 50 60 Z m 70 80 l 90 60 Z t 70 120")'FAILassert_equals: expected "path(\"M 10 20 L 30 50 Z L 60 80 Z M 80 100 L 170 160 Z T 150 220\")" but got "path(\"m 10 20 l 20 30 Z l 50 60 Z m 70 80 l 90 60 Z t 70 120\")"
e.style['d'] = "path(\"m 10.0 170.0 h 90.00 v 30.00 m 0 0 s 1 2 3 4 z c 9 8 7 6 5 4\")" should set the property valuePASS
Property d value 'path("m 10.0 170.0 h 90.00 v 30.00 m 0 0 s 1 2 3 4 z c 9 8 7 6 5 4")'FAILassert_equals: expected "path(\"M 10 170 H 100 V 200 M 100 200 S 101 202 103 204 Z C 109 208 107 206 105 204\")" but got "path(\"m 10 170 h 90 v 30 m 0 0 s 1 2 3 4 Z c 9 8 7 6 5 4\")"
e.style['d'] = " path( \"m 10 20 a 10 20 30 1 0 40 50 a 110 120 30 1 1 140 50\" )" should set the property valuePASS
Property d value ' path( "m 10 20 a 10 20 30 1 0 40 50 a 110 120 30 1 1 140 50" )'FAILassert_equals: expected "path(\"M 10 20 A 10 20 30 1 0 50 70 A 110 120 30 1 1 190 120\")" but got "path(\"m 10 20 a 10 20 30 1 0 40 50 a 110 120 30 1 1 140 50\")"

/svg/path/property/serialization.svg

<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg"
     xmlns:h="http://www.w3.org/1999/xhtml">
  <metadata>
    <h:link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/paths.html#TheDProperty"/>
    <h:meta name="assert" content="computed d is serialized using absolute commands"/>
  </metadata>
  <path id="target"></path>
  <h:script src="/resources/testharness.js"/>
  <h:script src="/resources/testharnessreport.js"/>
  <h:script src="/css/support/parsing-testcommon.js"/>
  <h:script src="/css/support/computed-testcommon.js"/>
  <script><![CDATA[
  let test1 = 'path("m 10 20 q 30 60 40 50 q 100 70 90 80")';
  test_valid_value('d', test1);
  test_computed_value('d', test1, 'path("M 10 20 Q 40 80 50 70 Q 150 140 140 150")');

  let test2 = 'path("M 0 0 L 100 100 m 0 100 l 100 0 Z l 160 20 Z")';
  test_valid_value('d', test2);
  test_computed_value('d', test2, 'path("M 0 0 L 100 100 M 100 200 L 200 200 Z L 260 220 Z")');

  let test3 = 'path("m 10 20   l 20 30   Z   l 50 60   Z   m 70 80   l 90 60   Z   t 70 120")';
  test_valid_value('d', test3, 'path("m 10 20 l 20 30 Z l 50 60 Z m 70 80 l 90 60 Z t 70 120")');
  test_computed_value('d', test3, 'path("M 10 20 L 30 50 Z L 60 80 Z M 80 100 L 170 160 Z T 150 220")');

  let test4 = 'path("m 10.0 170.0 h 90.00 v 30.00 m 0 0 s 1 2 3 4 z c 9 8 7 6 5 4")';
  test_valid_value('d', test4, 'path("m 10 170 h 90 v 30 m 0 0 s 1 2 3 4 Z c 9 8 7 6 5 4")');
  test_computed_value('d', test4, 'path("M 10 170 H 100 V 200 M 100 200 S 101 202 103 204 Z C 109 208 107 206 105 204")');

  let test5 = '  path(  "m 10 20 a 10 20 30 1 0 40 50 a 110 120 30 1 1 140 50"  )';
  test_valid_value('d', test5, 'path("m 10 20 a 10 20 30 1 0 40 50 a 110 120 30 1 1 140 50")');
  test_computed_value('d', test5, 'path("M 10 20 A 10 20 30 1 0 50 70 A 110 120 30 1 1 190 120")');
  ]]></script>
</svg>