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

Unified Diff: LayoutTests/svg/custom/pattern-false-resource-cycle-expected.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, 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/custom/pattern-false-resource-cycle-expected.html
diff --git a/LayoutTests/svg/custom/pattern-false-resource-cycle-expected.html b/LayoutTests/svg/custom/pattern-false-resource-cycle-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..edf5fa5077fd9e625adf939e7a796ef1649da239
--- /dev/null
+++ b/LayoutTests/svg/custom/pattern-false-resource-cycle-expected.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<svg>
+ <clipPath id="c1">
+ <rect width="100" height="100"/>
+ </clipPath>
+ <pattern id="p1" width="1" height="1">
+ <rect width="100" height="100" fill="green"/>
+ </pattern>
+ <rect width="100" height="100" fill="url(#p1)" clip-path="url(#c1)"/>
+</svg>
« no previous file with comments | « LayoutTests/svg/custom/pattern-false-resource-cycle.html ('k') | LayoutTests/svg/custom/pattern-within-other-pattern.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698