Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(308)

Side by Side Diff: LayoutTests/svg/custom/pattern-3-step-cycle-dynamic-1.html

Issue 303693009: Make SVGResourcesCycleSolver check for cycles beyond one level (and more) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add dynamic tests. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner) {
4 testRunner.dumpAsText();
5 testRunner.waitUntilDone();
6 window.onload = function() {
7 testRunner.displayAsyncThen(function() {
8 mutateTree();
9 testRunner.displayAsyncThen(function() {
10 testRunner.notifyDone();
11 });
12 });
13 };
14 } else {
15 window.onload = function() { setTimeout(mutateTree, 100); };
16 }
17 function mutateTree() {
18 // A reference from the 'rect' to the pattern cycle.
19 document.getElementsByTagName('rect')[0].setAttribute('fill', 'url(#p1)');
20 }
21 </script>
22 <p>PASS if no crash (stack overflow).</p>
23 <svg width="100" height="100">
24 <rect width="100" height="100"/>
25 <pattern id="p3" width="1" height="1">
26 <rect fill="url(#p1)" width="100" height="100"/>
27 </pattern>
28 <pattern id="p2" width="1" height="1">
29 <rect fill="url(#p3)" width="100" height="100"/>
30 </pattern>
31 <pattern id="p1" width="1" height="1">
32 <rect fill="url(#p2)" width="100" height="100"/>
33 </pattern>
34 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/pattern-3-step-cycle.html ('k') | LayoutTests/svg/custom/pattern-3-step-cycle-dynamic-1-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698