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

Unified Diff: third_party/WebKit/LayoutTests/svg/custom/resource-nesting-layout-cycle-2.html

Issue 1749423005: Don't use a SubtreeLayoutScope object for SVG resource layout (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify the test Created 4 years, 10 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: third_party/WebKit/LayoutTests/svg/custom/resource-nesting-layout-cycle-2.html
diff --git a/third_party/WebKit/LayoutTests/svg/custom/resource-nesting-layout-cycle-2.html b/third_party/WebKit/LayoutTests/svg/custom/resource-nesting-layout-cycle-2.html
new file mode 100644
index 0000000000000000000000000000000000000000..136207f44c63006a7948bcdcc5624ccd707ee414
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/custom/resource-nesting-layout-cycle-2.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+ <body>
+ <svg width="100%" height="100%" mask="url(#m1)">
+ </svg>
+ <svg>
+ <pattern id="p1">
+ <mask id="m1">
+ <polyline fill="url(#p1)" stroke="black" points="176,153 126,77 129,95 100,227"/>
+ </mask>
+ </pattern>
+ </svg>
+ </body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698