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

Side by Side 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, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #r {
4 -webkit-clip-path: circle(50%);
5 clip-path: url(#c);
6 }
7 </style>
8 <svg width="200" height="200">
9 <clipPath id="c">
10 <rect width="100" height="100"/>
11 </clipPath>
12 <rect id="r" width="200" height="200" fill="green"/>
13 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698