Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / large-image-pattern-crash.html
blob7f0d6597cee6bb03b974578724c8348cea68b88d
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <svg xmlns="http://www.w3.org/2000/svg">
5 <pattern id="pattern" width="100" height="100">
6 <image height="40000" width="40000" xlink:href="data:image/svg+xml,
7 <svg xmlns='http://www.w3.org/2000/svg'></svg>
8 "/>
9 </pattern>
10 <rect fill="url(#pattern)" height="300" width="400"/>
11 <text>PASS: did not crash.</text>
13 <script>
14 if (window.testRunner)
15 testRunner.dumpAsText();
16 </script>
17 </svg>
18 </body>
19 </html>