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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/keyframe-timing-functions2.html

Issue 2522123002: 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: 700px; 11 width: 700px;
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: 1.5s; 20 animation-duration: 1.5s;
21 } 21 }
22 22
23 @-webkit-keyframes move { 23 @keyframes move {
24 0% { 24 0% {
25 left: 0; 25 left: 0;
26 -webkit-animation-timing-function: ease-out; 26 animation-timing-function: ease-out;
27 } 27 }
28 10% { 28 10% {
29 left: 100px; 29 left: 100px;
30 -webkit-animation-timing-function: linear; 30 animation-timing-function: linear;
31 } 31 }
32 90% { 32 90% {
33 left: 500px; 33 left: 500px;
34 -webkit-animation-timing-function: ease-in; 34 animation-timing-function: ease-in;
35 } 35 }
36 100% { 36 100% {
37 left: 600px; 37 left: 600px;
38 } 38 }
39 } 39 }
40 </style> 40 </style>
41 <script src="resources/animation-test-helpers.js" type="text/javascript" chars et="utf-8"></script> 41 <script src="resources/animation-test-helpers.js" type="text/javascript" chars et="utf-8"></script>
42 <script type="text/javascript" charset="utf-8"> 42 <script type="text/javascript" charset="utf-8">
43 43
44 const expectedValues = [ 44 const expectedValues = [
45 // [time, element-id, property, expected-value, tolerance] 45 // [time, element-id, property, expected-value, tolerance]
46 [0.75, "box", "left", 300, 20], 46 [0.75, "box", "left", 300, 20],
47 ]; 47 ];
48 48
49 runAnimationTest(expectedValues); 49 runAnimationTest(expectedValues);
50 </script> 50 </script>
51 </head> 51 </head>
52 <body> 52 <body>
53 53
54 Tests whether timing functions inside keyframes are respected. 54 Tests whether timing functions inside keyframes are respected.
55 <div id="container"> 55 <div id="container">
56 <div id="box"></div> 56 <div id="box"></div>
57 </div> 57 </div>
58 <div id="result"> 58 <div id="result">
59 </div> 59 </div>
60 </body> 60 </body>
61 </html> 61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698