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

Side by Side Diff: LayoutTests/css3/filters/filter-animation-from-none-hw.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 .box { 6 .box {
7 height: 100px; 7 height: 100px;
8 width: 100px; 8 width: 100px;
9 margin: 10px; 9 margin: 10px;
10 background-color: blue; 10 background-color: blue;
11 display: inline-block; 11 display: inline-block;
12 -webkit-transform:translateZ(0); 12 transform:translateZ(0);
13 } 13 }
14 14
15 #grayscale-box { 15 #grayscale-box {
16 -webkit-animation: grayscale-anim 2s linear 16 -webkit-animation: grayscale-anim 2s linear
17 } 17 }
18 18
19 #sepia-box { 19 #sepia-box {
20 -webkit-animation: sepia-anim 2s linear 20 -webkit-animation: sepia-anim 2s linear
21 } 21 }
22 22
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 <div class="box" id="opacity-box"></div> 134 <div class="box" id="opacity-box"></div>
135 <div class="box" id="brightness-box"></div> 135 <div class="box" id="brightness-box"></div>
136 <div class="box" id="contrast-box"></div> 136 <div class="box" id="contrast-box"></div>
137 <div class="box" id="blur-box"></div> 137 <div class="box" id="blur-box"></div>
138 <!-- <div class="box" id="dropshadow-box"></div> --> 138 <!-- <div class="box" id="dropshadow-box"></div> -->
139 139
140 <div id="result"> 140 <div id="result">
141 </div> 141 </div>
142 </body> 142 </body>
143 </html> 143 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698