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

Side by Side Diff: LayoutTests/css3/filters/effect-reference-source-alpha-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="alpha" color-interpolation-filters="sRGB"> 3 <filter id="alpha" color-interpolation-filters="sRGB">
4 <feColorMatrix in="SourceAlpha"/> 4 <feColorMatrix in="SourceAlpha"/>
5 </filter> 5 </filter>
6 </defs> 6 </defs>
7 </svg> 7 </svg>
8 <style> 8 <style>
9 .rect { 9 .rect {
10 background-color: red; 10 background-color: red;
11 width: 100px; 11 width: 100px;
12 height: 100px; 12 height: 100px;
13 filter: url(#alpha); 13 filter: url(#alpha);
14 -webkit-filter: url(#alpha); 14 -webkit-filter: url(#alpha);
15 -webkit-transform: translateZ(0); 15 transform: translateZ(0);
16 } 16 }
17 </style> 17 </style>
18 <div class="rect"></div> 18 <div class="rect"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698