OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <style> | 5 <style> |
6 #box { | 6 #box { |
7 display: inline; | 7 display: inline; |
8 font-size: 10px; | 8 font-size: 10px; |
9 font-family: sans-serif; | 9 font-family: sans-serif; |
10 -webkit-transition: font-size 2s linear; | 10 transition: font-size 2s linear; |
11 } | 11 } |
12 | 12 |
13 #control { | 13 #control { |
14 display: inline; | 14 display: inline; |
15 font-size: 15px; | 15 font-size: 15px; |
16 font-family: sans-serif; | 16 font-family: sans-serif; |
17 } | 17 } |
18 | 18 |
19 #box.changed { | 19 #box.changed { |
20 font-size: 20px; | 20 font-size: 20px; |
(...skipping 28 matching lines...) Expand all Loading... |
49 runTransitionTest(expectedValues, setupTest); | 49 runTransitionTest(expectedValues, setupTest); |
50 </script> | 50 </script> |
51 </head> | 51 </head> |
52 <body> | 52 <body> |
53 <div id="box">Here is some text</div> | 53 <div id="box">Here is some text</div> |
54 <br> | 54 <br> |
55 <div id="control">Here is some text</div> | 55 <div id="control">Here is some text</div> |
56 <div id="result"></div> | 56 <div id="result"></div> |
57 </body> | 57 </body> |
58 </html> | 58 </html> |
OLD | NEW |