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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/animation-direction.html

Issue 2527583002: CSS Animations: Remove unnecessary webkit prefixes from layout tests (Closed)
Patch Set: Created 4 years 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 type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 6
7 #container { 7 #container {
8 position: relative; 8 position: relative;
9 border: 1px solid black; 9 border: 1px solid black;
10 height: 100px; 10 height: 100px;
11 width: 500px; 11 width: 500px;
12 } 12 }
13 13
14 #box { 14 #box {
15 position: absolute; 15 position: absolute;
16 height: 100px; 16 height: 100px;
17 width: 100px; 17 width: 100px;
18 background-color: blue; 18 background-color: blue;
19 -webkit-animation-name: move; 19 animation-name: move;
20 -webkit-animation-duration: 2s; 20 animation-duration: 2s;
21 -webkit-animation-direction: alternate; 21 animation-direction: alternate;
22 -webkit-animation-iteration-count: 2; 22 animation-iteration-count: 2;
23 -webkit-animation-timing-function: linear; 23 animation-timing-function: linear;
24 } 24 }
25 25
26 @-webkit-keyframes move { 26 @keyframes move {
27 0% { 27 0% {
28 left: 0; 28 left: 0;
29 } 29 }
30 100% { 30 100% {
31 left: 400px; 31 left: 400px;
32 } 32 }
33 } 33 }
34 34
35 </style> 35 </style>
36 <script src="resources/animation-test-helpers.js" type="text/javascript" chars et="utf-8"></script> 36 <script src="resources/animation-test-helpers.js" type="text/javascript" chars et="utf-8"></script>
(...skipping 15 matching lines...) Expand all
52 52
53 <!-- Test animation-direction: alternate --> 53 <!-- Test animation-direction: alternate -->
54 <div id="container"> 54 <div id="container">
55 <div id="box"></div> 55 <div id="box"></div>
56 </div> 56 </div>
57 57
58 <div id="result"></div> 58 <div id="result"></div>
59 59
60 </body> 60 </body>
61 </html> 61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698