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

Side by Side Diff: LayoutTests/css3/filters/filter-animation-from-none-multi-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 <!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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 <div class="box" id="opacity-box"></div> 143 <div class="box" id="opacity-box"></div>
144 <div class="box" id="brightness-box"></div> 144 <div class="box" id="brightness-box"></div>
145 <div class="box" id="contrast-box"></div> 145 <div class="box" id="contrast-box"></div>
146 <div class="box" id="blur-box"></div> 146 <div class="box" id="blur-box"></div>
147 <!-- <div class="box" id="dropshadow-box"></div> --> 147 <!-- <div class="box" id="dropshadow-box"></div> -->
148 148
149 <div id="result"> 149 <div id="result">
150 </div> 150 </div>
151 </body> 151 </body>
152 </html> 152 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/filters/filter-animation-from-none-hw.html ('k') | LayoutTests/css3/filters/filter-animation-hw.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698