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

Side by Side Diff: LayoutTests/svg/custom/pattern-content-cycle-w-resourceless-container.html

Issue 294393004: Simplify SVGResourcesCycleSolver::resourceContainsCycles (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fold the method; Use pre-order traversal to avoid recursion. Created 6 years, 7 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-content-cycle-w-resourceless-container-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() { 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>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/custom/pattern-content-cycle-w-resourceless-container-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698