Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-multiple-on-nested-disallowed-font.html
blob1cd7c64e26d07cf01a045b261c6b0fb9b47b8c60
1 <svg height="1" width="1" onload="runTest()">
2 <defs>
3 <use id="B">
4 <linearGradient>
5 <animateTransform attributeName="z"/>
6 <text font-family="x">
7 <textPath>
8 <font>
9 <font-face font-family="x">
10 </font>
11 </textPath>x
12 </text>
13 </animateTransform>
14 </linearGradient>
15 </use>
16 </defs>
17 <use xlink:href="#B"></use>
18 <use xlink:href="#B"></use>
19 </svg>
20 <script>
21 if (window.testRunner)
22 testRunner.dumpAsText();
24 function runTest() {
25 document.body.innerHTML += "PASS: This file should not crash.";
27 </script>