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

Side by Side Diff: LayoutTests/svg/custom/pattern-content-inheritance-cycle.html

Issue 1356053002: Consider Layout tree cycles when resolving the <pattern> content element (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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-inheritance-cycle-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 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>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/custom/pattern-content-inheritance-cycle-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698