Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / pattern-3-step-cycle.html
blob6356e35d79de7ebfa33309224c3a3ead0c7ef131
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner) {
4 testRunner.dumpAsText();
5 testRunner.waitUntilDone();
6 window.onload = function() {
7 testRunner.layoutAndPaintAsyncThen(function() { testRunner.notifyDone(); });
8 };
10 </script>
11 <p>PASS if no crash (stack overflow).</p>
12 <svg width="100" height="100">
13 <rect width="100" height="100" fill="url(#p1)"/>
14 <pattern id="p3" width="1" height="1">
15 <rect fill="url(#p1)" width="100" height="100"/>
16 </pattern>
17 <pattern id="p2" width="1" height="1">
18 <rect fill="url(#p3)" width="100" height="100"/>
19 </pattern>
20 <pattern id="p1" width="1" height="1">
21 <rect fill="url(#p2)" width="100" height="100"/>
22 </pattern>
23 </svg>