summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/text/mask-content.svg
blob: 35dfd81c33d90ff07d3cf1c70547a77fe6acc897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
  <style>
    @font-face {
      font-family: Ahem;
      src: url(../../fonts/Ahem.ttf);
    }
  </style>
  <defs>
    <mask id="m" x="0" y="0" width="600" height="400">
      <g style="font: 32px Ahem; white-space: pre; fill: white">
        <text x="20" y="100">one</text>
      </g>
    </mask>
  </defs>
  <rect x="0" y="0" width="600" height="400" fill="blue" mask="url(#m)"/>
  <g fill="none" stroke="black" stroke-width="4" shape-rendering="crispEdges">
    <rect x="20" y="73" width="96" height="32"/>
  </g>
  <script>
    function waitUntilFontLoaded() {
      var canvas = document.createElementNS("http://www.w3.org/1999/xhtml", "canvas");
      canvas.width = 100;
      canvas.height = 100;
      var ctx = canvas.getContext("2d");
      ctx.font = "100px Ahem";
      ctx.fillText("_", 0, 100);
      var img = ctx.getImageData(50, 50, 1, 1);
      if (img.data[3] == 255) {
        setTimeout(function() {
          document.documentElement.removeAttribute("class");
        }, 1);
      } else {
        setTimeout(waitUntilFontLoaded, 200);
      }
    }

    setTimeout(waitUntilFontLoaded, 200);
  </script>
</svg>