OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script> |
| 3 if (window.testRunner) { |
| 4 testRunner.dumpAsText(); |
| 5 testRunner.waitUntilDone(); |
| 6 window.onload = function() { |
| 7 testRunner.displayAsyncThen(function() { testRunner.notifyDone(); }); |
| 8 }; |
| 9 } |
| 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> |
OLD | NEW |