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

Unified Diff: third_party/WebKit/LayoutTests/svg/clip-path/nested-empty-clip.html

Issue 2555483003: Don't fail clip-paths with empty bounds (Closed)
Patch Set: Add SPv2 expectation Created 4 years 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/clip-path/nested-empty-clip.html
diff --git a/third_party/WebKit/LayoutTests/svg/clip-path/nested-empty-clip.html b/third_party/WebKit/LayoutTests/svg/clip-path/nested-empty-clip.html
new file mode 100644
index 0000000000000000000000000000000000000000..c17371432085f703d9625091d58aaef13540ccd4
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/clip-path/nested-empty-clip.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<svg>
+ <clipPath id="nested">
+ <path d="M0,0h100z"/>
+ </clipPath>
+ <clipPath id="clip" clip-path="url(#nested)">
+ <rect width="100" height="100"/>
+ </clipPath>
+ <rect width="100" height="100" fill="green"/>
+ <rect width="200" height="100" fill="red" clip-path="url(#clip)"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698