OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 #transformedChild { | 5 #transformedChild { |
6 -webkit-transform: rotate3d(0.2, 1, 0, 35grad); | 6 -webkit-transform: rotate3d(0.2, 1, 0, 35grad); |
7 } | 7 } |
8 #absoluteChild { | 8 #absoluteChild { |
9 position: absolute; | 9 position: absolute; |
10 top: 300px; | 10 top: 300px; |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 logRects("relativeChildContainer"); | 191 logRects("relativeChildContainer"); |
192 logRects("overhangingContainer"); | 192 logRects("overhangingContainer"); |
193 logRects("transformedChildContainer"); | 193 logRects("transformedChildContainer"); |
194 logRects("continuation"); | 194 logRects("continuation"); |
195 | 195 |
196 var testContainer = document.getElementById("tests"); | 196 var testContainer = document.getElementById("tests"); |
197 testContainer.parentNode.removeChild(testContainer); | 197 testContainer.parentNode.removeChild(testContainer); |
198 | 198 |
199 </script> | 199 </script> |
200 </body> | 200 </body> |
OLD | NEW |