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

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

Issue 2322343003: Add support for <basic-shape> to 'clip-path' on SVG elements (Closed)
Patch Set: Update SPv2 expectations Created 4 years, 3 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/clip-path/clip-path-invalid.html
diff --git a/third_party/WebKit/LayoutTests/svg/clip-path/clip-path-invalid.html b/third_party/WebKit/LayoutTests/svg/clip-path/clip-path-invalid.html
new file mode 100644
index 0000000000000000000000000000000000000000..bda7df4c0b0c972b1dd6e148bb1ad0e8fb15142b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/clip-path/clip-path-invalid.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<svg>
+ <clipPath id="clip" clip-path="url(#nosuchclip)">
+ <rect width="100" height="100"/>
+ </clipPath>
+ <mask id="mask"></mask>
+ <rect width="300" height="100" fill="red"/>
+ <rect width="100" height="100" fill="green" clip-path="url(#nosuchclip)"/>
+ <rect transform="translate(100 0)" width="100" height="100" fill="green" clip-path="url(#mask)"/>
+ <rect transform="translate(200 0)" width="100" height="100" fill="green" clip-path="url(#clip)"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698