OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <!-- | 2 <!-- |
3 This test creates a situation where the child transform layer's position | 3 This test creates a situation where the child transform layer's position |
4 needs to take into account the rounding that is applied to m_graphicsLayer. | 4 needs to take into account the rounding that is applied to graphics_layer_. |
5 --> | 5 --> |
6 <style> | 6 <style> |
7 #animDiv { | 7 #animDiv { |
8 position: absolute; | 8 position: absolute; |
9 width: 176px; | 9 width: 176px; |
10 height: 91px; | 10 height: 91px; |
11 background-image: none; | 11 background-image: none; |
12 background-color: #00cc35; | 12 background-color: #00cc35; |
13 left: -164.5px; | 13 left: -164.5px; |
14 top: 184.5px; | 14 top: 184.5px; |
(...skipping 22 matching lines...) Expand all Loading... |
37 us from seeing the bug. */ | 37 us from seeing the bug. */ |
38 transform: translateZ(0); | 38 transform: translateZ(0); |
39 } | 39 } |
40 </style> | 40 </style> |
41 <div id="clipper"> | 41 <div id="clipper"> |
42 <div id="container"> | 42 <div id="container"> |
43 <div id="animDiv"></div> | 43 <div id="animDiv"></div> |
44 <div id="shake"></div> | 44 <div id="shake"></div> |
45 </div> | 45 </div> |
46 </div> | 46 </div> |
OLD | NEW |