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

Side by Side Diff: LayoutTests/animations/combo-transform-rotate+scale.html

Issue 716963002: Remove property-specific handling in animation-test-helpers.js (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@animhelpercleanup
Patch Set: rm whitespace Created 6 years, 1 month 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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd"> 2 "http://www.w3.org/TR/html4/loose.dtd">
3 3
4 <html lang="en"> 4 <html lang="en">
5 <head> 5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 <title>Combined transform rotate() scale()</title> 7 <title>Combined transform rotate() scale()</title>
8 <style type="text/css" media="screen"> 8 <style type="text/css" media="screen">
9 #box { 9 #box {
10 height: 100px; 10 height: 100px;
11 width: 100px; 11 width: 100px;
12 background-color: blue; 12 background-color: blue;
13 -webkit-animation-duration: 2s; 13 -webkit-animation-duration: 2s;
14 -webkit-animation-timing-function: linear; 14 -webkit-animation-timing-function: linear;
15 -webkit-animation-name: anim; 15 -webkit-animation-name: anim;
16 } 16 }
17 @-webkit-keyframes anim { 17 @-webkit-keyframes anim {
18 from { transform: rotate(0) scale(1,1); } 18 from { transform: rotate(0) scale(1,1); }
19 to { transform: rotate(360deg) scale(2,4); } 19 to { transform: rotate(360deg) scale(2,4); }
20 } 20 }
21 </style> 21 </style>
22 <script src="resources/animation-test-helpers.js" type="text/javascript" chars et="utf-8"></script> 22 <script src="resources/animation-test-helpers.js" type="text/javascript" chars et="utf-8"></script>
23 <script type="text/javascript" charset="utf-8"> 23 <script type="text/javascript" charset="utf-8">
24 24
25 const expectedValues = [ 25 const expectedValues = [
26 // [time, element-id, property, expected-value, tolerance] 26 // [time, element-id, property, expected-value, tolerance]
27 [0.5, "box", "webkitTransform", [0,1.25,-1.7,0,0], 0.2], 27 [0.5, "box", "webkitTransform", [0,1.25,-1.7,0,0,0], 0.2],
28 [1.0, "box", "webkitTransform", [-1.5,0,0,-2.5,0,0], 0.2], 28 [1.0, "box", "webkitTransform", [-1.5,0,0,-2.5,0,0], 0.2],
29 ]; 29 ];
30 30
31 runAnimationTest(expectedValues); 31 runAnimationTest(expectedValues);
32 32
33 </script> 33 </script>
34 </head> 34 </head>
35 <body> 35 <body>
36 This test performs an animation of the rotate() and scale() operators. It animat es over 2 seconds. 36 This test performs an animation of the rotate() and scale() operators. It animat es over 2 seconds.
37 At 0.5 and 1 second it takes a snapshot and expects the result to be within rang e. 37 At 0.5 and 1 second it takes a snapshot and expects the result to be within rang e.
38 <div id="box"> 38 <div id="box">
39 </div> 39 </div>
40 <div id="result"> 40 <div id="result">
41 </div> 41 </div>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698