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

Side by Side Diff: LayoutTests/svg/custom/clip-path-with-css-transform-2.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" 1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:xlink="http://www.w3.org/1999/xlink"> 2 xmlns:xlink="http://www.w3.org/1999/xlink">
3 <defs> 3 <defs>
4 <clipPath id="myclip"> 4 <clipPath id="myclip">
5 <rect x="0" y="0" width="200" height="200" style="-webkit-transform: scale(. 5)"/> 5 <rect x="0" y="0" width="200" height="200" style="transform: scale(.5)"/>
6 <!-- second rect causes masking --> 6 <!-- second rect causes masking -->
7 <rect x="0" y="0" width="200" height="200" style="-webkit-transform: scale(. 5)"/> 7 <rect x="0" y="0" width="200" height="200" style="transform: scale(.5)"/>
8 </clipPath> 8 </clipPath>
9 </defs> 9 </defs>
10 <g clip-path="url(#myclip)"> 10 <g clip-path="url(#myclip)">
11 <rect x="0" y="0" width="200" height="200" fill="red"/> 11 <rect x="0" y="0" width="200" height="200" fill="red"/>
12 <rect x="0" y="0" width="100" height="100" fill="green"/> 12 <rect x="0" y="0" width="100" height="100" fill="green"/>
13 </g> 13 </g>
14 </svg> 14 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/clip-path-with-css-transform-1.svg ('k') | LayoutTests/svg/custom/filter-css-transform-resolution.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698