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)
| Subtest | Status | Message |
|---|---|---|
| Property pointer-events value 'auto' | PASS | |
| Property pointer-events value 'bounding-box' | FAIL | assert_true: 'bounding-box' is a supported value for pointer-events. expected true got false |
| Property pointer-events value 'visiblepainted' | FAIL | assert_true: 'visiblepainted' is a supported value for pointer-events. expected true got false |
| Property pointer-events value 'visiblefill' | FAIL | assert_true: 'visiblefill' is a supported value for pointer-events. expected true got false |
| Property pointer-events value 'visiblestroke' | FAIL | assert_true: 'visiblestroke' is a supported value for pointer-events. expected true got false |
| Property pointer-events value 'visible' | FAIL | assert_true: 'visible' is a supported value for pointer-events. expected true got false |
| Property pointer-events value 'painted' | FAIL | assert_true: 'painted' is a supported value for pointer-events. expected true got false |
| Property pointer-events value 'fill' | FAIL | assert_true: 'fill' is a supported value for pointer-events. expected true got false |
| Property pointer-events value 'stroke' | FAIL | assert_true: 'stroke' is a supported value for pointer-events. expected true got false |
| Property pointer-events value 'all' | FAIL | assert_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>