Status: FAIL | Duration: 56ms | Subtests: 0/4 | 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 stop-color has initial value rgb(0, 0, 0) | FAIL | assert_true: stop-color doesn't seem to be supported in the computed style expected true got false |
| Property stop-color does not inherit | FAIL | assert_true: expected true got false |
| Property stop-opacity has initial value 1 | FAIL | assert_true: stop-opacity doesn't seem to be supported in the computed style expected true got false |
| Property stop-opacity does not inherit | FAIL | assert_true: expected true got false |
<?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="8000px"> <title>Inheritance of SVG paint server properties</title> <metadata> <h:link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/pservers.html"/> <h:meta name="assert" content="properties inherit according to the spec."/> <h:meta name="assert" content="properties have expected initial values."/> </metadata> <g id="container"> <g id="target"></g> </g> <h:script src="/resources/testharness.js"/> <h:script src="/resources/testharnessreport.js"/> <h:script src="/css/support/inheritance-testcommon.js"/> <script><![CDATA[ assert_not_inherited('stop-color', 'rgb(0, 0, 0)', 'rgb(42, 53, 64)'); assert_not_inherited('stop-opacity', '1', '0.5'); ]]></script> </svg>