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

Side by Side Diff: LayoutTests/css3/filters/effect-reference-subregion-chained-hw.html

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" width="0" height="0" version="1.1"> 1 <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1">
2 <defs> 2 <defs>
3 <filter id="colormatrix" color-interpolation-filters="sRGB"> 3 <filter id="colormatrix" color-interpolation-filters="sRGB">
4 <feColorMatrix type="hueRotate" values="10" x="80" y="0" width="80" height ="90"/> 4 <feColorMatrix type="hueRotate" values="10" x="80" y="0" width="80" height ="90"/>
5 <feColorMatrix type="hueRotate" values="10" x="40" y="0" width="80" height ="90"/> 5 <feColorMatrix type="hueRotate" values="10" x="40" y="0" width="80" height ="90"/>
6 </filter> 6 </filter>
7 </defs> 7 </defs>
8 </svg> 8 </svg>
9 <style> 9 <style>
10 img { 10 img {
11 margin: 10px; 11 margin: 10px;
12 -webkit-transform: translateZ(0); 12 transform: translateZ(0);
13 } 13 }
14 </style> 14 </style>
15 <img src="resources/reference.png"> 15 <img src="resources/reference.png">
16 <img style="-webkit-filter: url(#colormatrix); filter: url(#colormatrix);" src=" resources/reference.png"> 16 <img style="-webkit-filter: url(#colormatrix); filter: url(#colormatrix);" src=" resources/reference.png">
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698