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

Side by Side Diff: ManualTests/transition-accelerated.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
« no previous file with comments | « ManualTests/svg-css-animate-compound.html ('k') | ManualTests/transition-delay.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 .box { 6 .box {
7 position: relative; 7 position: relative;
8 height: 100px; 8 height: 100px;
9 width: 100px; 9 width: 100px;
10 margin: 10px; 10 margin: 10px;
(...skipping 12 matching lines...) Expand all
23 from { 23 from {
24 left: 0px; 24 left: 0px;
25 } 25 }
26 to { 26 to {
27 left: 400px; 27 left: 400px;
28 } 28 }
29 } 29 }
30 30
31 @-webkit-keyframes fast { 31 @-webkit-keyframes fast {
32 from { 32 from {
33 -webkit-transform: translateX(0); 33 transform: translateX(0);
34 } 34 }
35 to { 35 to {
36 -webkit-transform: translateX(400px); 36 transform: translateX(400px);
37 } 37 }
38 } 38 }
39 </style> 39 </style>
40 </head> 40 </head>
41 <body> 41 <body>
42 <p>The lower box should animate more smoothly than the upper one (on Mac).</p> 42 <p>The lower box should animate more smoothly than the upper one (on Mac).</p>
43 <div class="box slow"></div> 43 <div class="box slow"></div>
44 <div class="box fast"></div> 44 <div class="box fast"></div>
45 </body> 45 </body>
46 </html> 46 </html>
OLDNEW
« no previous file with comments | « ManualTests/svg-css-animate-compound.html ('k') | ManualTests/transition-delay.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698