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

Side by Side Diff: LayoutTests/animations/animation-shorthand-overriding.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 <html> 1 <html>
2 <head> 2 <head>
3 <title>Test animation shorthand property</title> 3 <title>Test animation shorthand property</title>
4 <style type="text/css"> 4 <style type="text/css">
5 @-webkit-keyframes circle { 5 @-webkit-keyframes circle {
6 from { -webkit-transform:rotate(0deg); } 6 from { transform:rotate(0deg); }
7 to { -webkit-transform:rotate(360deg); } 7 to { transform:rotate(360deg); }
8 } 8 }
9 @-webkit-keyframes inner-circle { 9 @-webkit-keyframes inner-circle {
10 from { -webkit-transform:rotate(0deg); } 10 from { transform:rotate(0deg); }
11 to { -webkit-transform:rotate(-360deg); } 11 to { transform:rotate(-360deg); }
12 } 12 }
13 13
14 div > div { 14 div > div {
15 -webkit-animation: 5s linear normal none; 15 -webkit-animation: 5s linear normal none;
16 } 16 }
17 17
18 div { 18 div {
19 margin: 20px auto 0; 19 margin: 20px auto 0;
20 } 20 }
21 21
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 } 63 }
64 64
65 window.addEventListener('load', start, false); 65 window.addEventListener('load', start, false);
66 </script> 66 </script>
67 </head> 67 </head>
68 <body> 68 <body>
69 <div><div id="a"></div></div> 69 <div><div id="a"></div></div>
70 <div id="result"/> 70 <div id="result"/>
71 </body> 71 </body>
72 </html> 72 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698