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

Side by Side Diff: LayoutTests/animations/animation-welcome-safari.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US"> 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
3 <head> 3 <head>
4 4
5 <style type="text/css"> 5 <style type="text/css">
6 6
7 #red, #green, #blue { position: absolute; width: 200px; height: 200px; opacity: 0} 7 #red, #green, #blue { position: absolute; width: 200px; height: 200px; opacity: 0}
8 8
9 #red { background-color: red; } 9 #red { background-color: red; }
10 10
11 #green { background-color: green; } 11 #green { background-color: green; }
12 12
13 #blue { background-color: blue; } 13 #blue { background-color: blue; }
14 14
15 @-webkit-keyframes red { 15 @-webkit-keyframes red {
16 from { 16 from {
17 opacity: 0; 17 opacity: 0;
18 » » -webkit-transform: scale(3); 18 » » transform: scale(3);
19 } 19 }
20 22% { 20 22% {
21 opacity: 1; 21 opacity: 1;
22 » » -webkit-transform: scale(1.1); 22 » » transform: scale(1.1);
23 } 23 }
24 30% { 24 30% {
25 opacity: 1; 25 opacity: 1;
26 » » -webkit-transform: scale(1); 26 » » transform: scale(1);
27 } 27 }
28 82% { 28 82% {
29 opacity: 1; 29 opacity: 1;
30 » » -webkit-transform: scale(0.92); 30 » » transform: scale(0.92);
31 } 31 }
32 to { 32 to {
33 opacity: 0; 33 opacity: 0;
34 » » -webkit-transform: scale(0.2); 34 » » transform: scale(0.2);
35 } 35 }
36 } 36 }
37 37
38 @-webkit-keyframes green { 38 @-webkit-keyframes green {
39 from { 39 from {
40 opacity: 0; 40 opacity: 0;
41 » » -webkit-transform: scale(2.6); 41 » » transform: scale(2.6);
42 } 42 }
43 20% { 43 20% {
44 opacity: 1; 44 opacity: 1;
45 » » -webkit-transform: scale(1); 45 » » transform: scale(1);
46 } 46 }
47 77% { 47 77% {
48 opacity: 1; 48 opacity: 1;
49 » » -webkit-transform: scale(0.9); 49 » » transform: scale(0.9);
50 } 50 }
51 to { 51 to {
52 opacity: 0; 52 opacity: 0;
53 » » -webkit-transform: scale(0.1); 53 » » transform: scale(0.1);
54 } 54 }
55 } 55 }
56 56
57 /* safari keyframes */ 57 /* safari keyframes */
58 @-webkit-keyframes blue { 58 @-webkit-keyframes blue {
59 from { 59 from {
60 » » -webkit-transform: scale(1.2); 60 » » transform: scale(1.2);
61 opacity: 0; 61 opacity: 0;
62 } 62 }
63 20% { 63 20% {
64 » » -webkit-transform: scale(0.8); 64 » » transform: scale(0.8);
65 opacity: 1; 65 opacity: 1;
66 } 66 }
67 84% { 67 84% {
68 » » -webkit-transform: scale(0.6); 68 » » transform: scale(0.6);
69 opacity: 1; 69 opacity: 1;
70 } 70 }
71 to { 71 to {
72 » » -webkit-transform: scale(0.2); 72 » » transform: scale(0.2);
73 opacity: 0; 73 opacity: 0;
74 } 74 }
75 } 75 }
76 76
77 body.go #red { 77 body.go #red {
78 -webkit-animation-delay: 0.1s; 78 -webkit-animation-delay: 0.1s;
79 -webkit-animation-duration: 1s; 79 -webkit-animation-duration: 1s;
80 -webkit-animation-name: red; 80 -webkit-animation-name: red;
81 } 81 }
82 82
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 <body> 130 <body>
131 <div id="red"></div> 131 <div id="red"></div>
132 <div id="green"></div> 132 <div id="green"></div>
133 <div id="blue"></div> 133 <div id="blue"></div>
134 <div id="result"> 134 <div id="result">
135 </div> 135 </div>
136 </div> 136 </div>
137 137
138 </body> 138 </body>
139 </html> 139 </html>
OLDNEW
« no previous file with comments | « LayoutTests/animations/animation-start-event-destroy-renderer.html ('k') | LayoutTests/animations/big-rotation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698