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

Unified Diff: LayoutTests/svg/clip-path/clip-path-prefixed-vs-not.html

Issue 683703005: Prefer unprefixed clip-path to (webkit) prefixed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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/clip-path/clip-path-prefixed-vs-not.html
diff --git a/LayoutTests/svg/clip-path/clip-path-prefixed-vs-not.html b/LayoutTests/svg/clip-path/clip-path-prefixed-vs-not.html
new file mode 100644
index 0000000000000000000000000000000000000000..d6cdf7c362194ddc2c424f0833d66752247cab9e
--- /dev/null
+++ b/LayoutTests/svg/clip-path/clip-path-prefixed-vs-not.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<style>
+#r {
+ -webkit-clip-path: circle(50%);
+ clip-path: url(#c);
+}
+</style>
+<svg width="200" height="200">
+ <clipPath id="c">
+ <rect width="100" height="100"/>
+ </clipPath>
+ <rect id="r" width="200" height="200" fill="green"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698