OLD | NEW |
| 1 <!DOCTYPE html> |
1 <html> | 2 <html> |
2 <head> | 3 <head> |
3 <style type="text/css"> | 4 <style type="text/css"> |
4 #box { | 5 #box { |
5 position: relative; | 6 position: relative; |
6 height: 100px; | 7 height: 100px; |
7 width: 100px; | 8 width: 100px; |
8 margin: 20px; | 9 margin: 20px; |
9 background-color: red; | 10 background-color: red; |
10 transform: translateZ(0); | 11 transform: translateZ(0); |
(...skipping 27 matching lines...) Expand all Loading... |
38 // pixel test image has to have 1.0 opacity. | 39 // pixel test image has to have 1.0 opacity. |
39 var doPixelTest = true; | 40 var doPixelTest = true; |
40 runAnimationTest(expectedValues, null, null, null, doPixelTest); | 41 runAnimationTest(expectedValues, null, null, null, doPixelTest); |
41 </script> | 42 </script> |
42 </head> | 43 </head> |
43 <body> | 44 <body> |
44 <div id="box"></div> | 45 <div id="box"></div> |
45 <div id="result"></div> | 46 <div id="result"></div> |
46 </body> | 47 </body> |
47 </html> | 48 </html> |
OLD | NEW |