Index: LayoutTests/svg/custom/pattern-within-other-pattern.html |
diff --git a/LayoutTests/svg/custom/pattern-within-other-pattern.html b/LayoutTests/svg/custom/pattern-within-other-pattern.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0b977c83b6cef5f53429a391fc4e6bc6edd4674e |
--- /dev/null |
+++ b/LayoutTests/svg/custom/pattern-within-other-pattern.html |
@@ -0,0 +1,10 @@ |
+<!DOCTYPE html> |
+<svg width="100" height="100"> |
+ <pattern id="outer" width="1" height="1"> |
+ <pattern id="inner" width="1" height="1"> |
+ <rect width="100" height="100" fill="url(#outer)"/> |
+ </pattern> |
+ <rect width="100" height="100" fill="green"/> |
+ </pattern> |
+ <rect width="100" height="100" fill="url(#inner)"/> |
+</svg> |