Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / font-face-move.svg
blob17d1ed4844ff2d11429e56f44978069497631510
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <defs id="defs">
3 <font id="a">
4 <font-face id="bfont" font-family="b" />
5 </font>
6 </defs>
7 <text font-family="b">PASS</text>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11 var defs = document.getElementById("defs");
12 var bfont = document.getElementById("bfont");
13 defs.appendChild(bfont);
14 </script>
15 </svg>