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

Side by Side Diff: LayoutTests/svg/clip-path/clip-path-css-transform-1.svg

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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 unified diff | Download patch
OLDNEW
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k"> 1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k">
2 <defs> 2 <defs>
3 <clipPath id="clip" clipPathUnits="userSpaceOnUse" style="-webkit-transform: sca le(10) translate(2px, 2px)"> 3 <clipPath id="clip" clipPathUnits="userSpaceOnUse" style="transform: scale(10) t ranslate(2px, 2px)">
4 <circle cx="10" cy="10" r="10"/> 4 <circle cx="10" cy="10" r="10"/>
5 <!-- second circle causes masking --> 5 <!-- second circle causes masking -->
6 <circle cx="10" cy="10" r="10"/> 6 <circle cx="10" cy="10" r="10"/>
7 </clipPath> 7 </clipPath>
8 </defs> 8 </defs>
9 <circle cx="120" cy="120" r="99" fill="red"/> 9 <circle cx="120" cy="120" r="99" fill="red"/>
10 <a xlink:href="#"><rect width="220" height="220" fill="green" clip-path="url(#cl ip)"/></a> 10 <a xlink:href="#"><rect width="220" height="220" fill="green" clip-path="url(#cl ip)"/></a>
11 </svg> 11 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698