wpt / svg / text / parsing / text-anchor-computed.svg

Status: FAIL | Duration: 56ms | Subtests: 0/3 | Open test on wpt.live | wpt.fyi

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

SubtestStatusMessage
Property text-anchor value 'start'FAILassert_true: text-anchor doesn't seem to be supported in the computed style expected true got false
Property text-anchor value 'middle'FAILassert_true: text-anchor doesn't seem to be supported in the computed style expected true got false
Property text-anchor value 'end'FAILassert_true: text-anchor doesn't seem to be supported in the computed style expected true got false

/svg/text/parsing/text-anchor-computed.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 Text: getComputedStyle().textAnchor</title>
  <metadata>
    <h:link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/text.html#TextAnchorProperty"/>
    <h:meta name="assert" content="text-anchor computed value is the specified keyword."/>
  </metadata>
  <text id="target"></text>
  <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("text-anchor", "start");
test_computed_value("text-anchor", "middle");
test_computed_value("text-anchor", "end");

  ]]></script>
</svg>