Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-rebuild-resources-crash.svg
blob862f55d5d0a3f8aa24e3c1d22d6da6d7b7c4acfc
1 <?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
2 <svg id="svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
3 <!-- Test for https://bugs.webkit.org/show_bug.cgi?id=106664 -->
4 <defs>
5 <symbol id="s1">
6 <use/>
7 <rect id="r1"/>
8 </symbol>
10 <use id="u1" xlink:href="#s1"/>
12 <style>
13 use { clip-path: url(#r1); }
14 </style>
15 </defs>
17 <text>PASS: Did not crash.</text>
19 <script>
20 function initCF() {
21 u1 = document.getElementById('u1');
22 clone = u1.cloneNode(false);
23 document.getElementById('svg').appendChild(clone);
26 if (window.testRunner)
27 testRunner.dumpAsText();
29 document.addEventListener("DOMContentLoaded", initCF, false);
30 </script>
31 </svg>