Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / pattern-content-cycle-w-resourceless-container.html
blobb15db70651143bc8c2a5b9c7d78b95ac05062966
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 fill="url(#p1)" width="100" height="100"/>
14 <pattern id="p2" width="1" height="1">
15 <g>
16 <rect fill="url(#p1)" width="100" height="100"/>
17 </g>
18 </pattern>
19 <pattern id="p1" width="1" height="1">
20 <g>
21 <rect fill="url(#p2)" width="100" height="100"/>
22 </g>
23 </pattern>
24 </svg>