wpt / svg / text / reftests / text-font-face-load-image.html

Status: PASS | Duration: 6ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/svg/text/reftests/text-font-face-load-image.html

<!doctype html>
<meta charset=utf-8>
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1901414">
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<link rel="match" href="text-font-face-load-image-ref.html">
<style>
  img { image-rendering: crisp-edges }
  body { margin: 0 }
</style>
<img id="image" src="text-font-face-load-image-svg.svg">

/svg/text/reftests/text-font-face-load-image-ref.html

<!doctype html>
<style>
  @font-face {
    font-family: CustomFont;
    src: url("/fonts/Ahem.ttf");
  }
  svg { font: 25px/1 CustomFont }
  body { margin: 0 }
</style>
<svg width="800" height="80">
  <text x="0" y="0">Hello, world!</text>
</svg>