wpt / svg / text / reftests / text-path-transformed.html

Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/svg/text/reftests/text-path-transformed.html

<!doctype html>
<meta charset="utf-8">
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1921662">
<link rel="match" href="text-path-transformed-ref.html">
<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <path id="guide" d="M 0 50 H 200" stroke="black" transform="scale(2)" />
  <text x="0" y="0">
    <textPath xlink:href="#guide" font-size="40">XXXX</textPath>
  </text>
</svg>

/svg/text/reftests/text-path-transformed-ref.html

<!doctype html>
<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <path id="guide" d="M 0 100 H 200" stroke="black" stroke-width="2" />
  <text x="0" y="0">
    <textPath xlink:href="#guide" font-size="40">XXXX</textPath>
  </text>
</svg>