wpt / svg / painting / parsing / stroke-linejoin-valid.svg

Status: FAIL | Duration: 58ms | Subtests: 3/5 | 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['stroke-linejoin'] = "miter" should set the property valuePASS
e.style['stroke-linejoin'] = "miter-clip" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""
e.style['stroke-linejoin'] = "round" should set the property valuePASS
e.style['stroke-linejoin'] = "bevel" should set the property valuePASS
e.style['stroke-linejoin'] = "arcs" should set the property valueFAILassert_not_equals: property should be set got disallowed value ""

/svg/painting/parsing/stroke-linejoin-valid.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 Painting: parsing stroke-linejoin with valid values</title>
  <metadata>
    <h:link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/painting.html#StrokeLinejoinProperty"/>
    <h:meta name="assert" content="stroke-linejoin supports the full grammar 'miter | miter-clip | round | bevel | arcs'"/>
  </metadata>
  <g id="target"></g>
  <h:script src="/resources/testharness.js"/>
  <h:script src="/resources/testharnessreport.js"/>
  <h:script src="/css/support/parsing-testcommon.js"/>
  <script><![CDATA[

test_valid_value("stroke-linejoin", "miter");
test_valid_value("stroke-linejoin", "miter-clip");
test_valid_value("stroke-linejoin", "round");
test_valid_value("stroke-linejoin", "bevel");
test_valid_value("stroke-linejoin", "arcs");

  ]]></script>
</svg>