wpt / svg / interact / parsing / pointer-events-computed.svg

Status: FAIL | Duration: 65ms | Subtests: 2/11 | Open test on wpt.live | wpt.fyi

Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)

SubtestStatusMessage
Property pointer-events value 'auto'PASS
Property pointer-events value 'bounding-box'FAILassert_true: 'bounding-box' is a supported value for pointer-events. expected true got false
Property pointer-events value 'visiblepainted'FAILassert_true: 'visiblepainted' is a supported value for pointer-events. expected true got false
Property pointer-events value 'visiblefill'FAILassert_true: 'visiblefill' is a supported value for pointer-events. expected true got false
Property pointer-events value 'visiblestroke'FAILassert_true: 'visiblestroke' is a supported value for pointer-events. expected true got false
Property pointer-events value 'visible'FAILassert_true: 'visible' is a supported value for pointer-events. expected true got false
Property pointer-events value 'painted'FAILassert_true: 'painted' is a supported value for pointer-events. expected true got false
Property pointer-events value 'fill'FAILassert_true: 'fill' is a supported value for pointer-events. expected true got false
Property pointer-events value 'stroke'FAILassert_true: 'stroke' is a supported value for pointer-events. expected true got false
Property pointer-events value 'all'FAILassert_true: 'all' is a supported value for pointer-events. expected true got false
Property pointer-events value 'none'PASS

/svg/interact/parsing/pointer-events-computed.svg

<svg xmlns="http://www.w3.org/2000/svg"
     xmlns:h="http://www.w3.org/1999/xhtml"
     width="800px" height="8000px">
  <title>SVG Scripting and Interactivity: getComputedStyle().pointerEvents</title>
  <metadata>
    <h:link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/interact.html#PointerEventsProperty"/>
    <h:meta name="assert" content="pointer-events computed value is as specified."/>
  </metadata>
  <g id="target"></g>
  <h:script src="/resources/testharness.js"/>
  <h:script src="/resources/testharnessreport.js"/>
  <h:script src="/css/support/computed-testcommon.js"/>
  <script><![CDATA[

test_computed_value("pointer-events", "auto");
test_computed_value("pointer-events", "bounding-box");
test_computed_value("pointer-events", "visiblepainted");
test_computed_value("pointer-events", "visiblefill");
test_computed_value("pointer-events", "visiblestroke");
test_computed_value("pointer-events", "visible");
test_computed_value("pointer-events", "painted");
test_computed_value("pointer-events", "fill");
test_computed_value("pointer-events", "stroke");
test_computed_value("pointer-events", "all");
test_computed_value("pointer-events", "none");

  ]]></script>
</svg>