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

Side by Side Diff: LayoutTests/svg/custom/pattern-3-step-cycle.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
« no previous file with comments | « no previous file | LayoutTests/svg/custom/pattern-3-step-cycle-dynamic-1.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script> 2 <script>
3 if (window.testRunner) { 3 if (window.testRunner) {
4 testRunner.dumpAsText(); 4 testRunner.dumpAsText();
5 testRunner.waitUntilDone(); 5 testRunner.waitUntilDone();
6 window.onload = function() { 6 window.onload = function() {
7 testRunner.displayAsyncThen(function() { testRunner.notifyDone(); }); 7 testRunner.displayAsyncThen(function() { testRunner.notifyDone(); });
8 }; 8 };
9 } 9 }
10 </script> 10 </script>
11 <p>PASS if no crash (stack overflow).</p> 11 <p>PASS if no crash (stack overflow).</p>
12 <svg width="100" height="100"> 12 <svg width="100" height="100">
13 <rect fill="url(#p1)" 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>
14 <pattern id="p2" width="1" height="1"> 17 <pattern id="p2" width="1" height="1">
15 <g> 18 <rect fill="url(#p3)" width="100" height="100"/>
16 <rect fill="url(#p1)" width="100" height="100"/>
17 </g>
18 </pattern> 19 </pattern>
19 <pattern id="p1" width="1" height="1"> 20 <pattern id="p1" width="1" height="1">
20 <g> 21 <rect fill="url(#p2)" width="100" height="100"/>
21 <rect fill="url(#p2)" width="100" height="100"/>
22 </g>
23 </pattern> 22 </pattern>
24 </svg> 23 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/custom/pattern-3-step-cycle-dynamic-1.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698