OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script src=../../resources/run-after-layout-and-paint.js></script> | |
3 <p>PASS if no crash (stack overflow)</p> | |
4 <svg> | |
5 <pattern id="a" width="1" height="1"> | |
6 <rect fill="url(#b)" width="1" height="1"/> | |
7 </pattern> | |
8 <pattern id="b" xlink:href="#a"/> | |
9 <rect fill="url(#b)" width="1" height="1"/> | |
10 </svg> | |
11 <script> | |
12 if (window.testRunner) | |
13 testRunner.dumpAsText(); | |
14 runAfterLayoutAndPaint(function() {}, true); | |
15 </script> | |
OLD | NEW |