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

Unified Diff: LayoutTests/svg/custom/pattern-directly-and-indirectly-referenced-expected.svg

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-directly-and-indirectly-referenced-expected.svg
diff --git a/LayoutTests/svg/custom/pattern-directly-and-indirectly-referenced-expected.svg b/LayoutTests/svg/custom/pattern-directly-and-indirectly-referenced-expected.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3aa71f4f0293e10e4f97814893f1ef8a4294d0c3
--- /dev/null
+++ b/LayoutTests/svg/custom/pattern-directly-and-indirectly-referenced-expected.svg
@@ -0,0 +1,12 @@
+<svg xmlns="http://www.w3.org/2000/svg">
+ <pattern width="100%" height="100%" id="pattern" viewBox="0 0 100 100">
+ <rect width="100" height="100" fill="gray"/>
+ </pattern>
+ <pattern width="100%" height="100%" id="maskPattern" viewBox="0 0 100 100">
+ <rect width="100" height="100" fill="gray"/>
+ </pattern>
+ <mask id="mask">
+ <circle fill="url(#maskPattern)" cx="100" cy="100" r="100"/>
+ </mask>
+ <rect width="200" height="200" mask="url(#mask)" fill="url(#pattern)"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698