OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 | 4 |
5 .compositedAndRotated { | 5 .compositedAndRotated { |
6 -webkit-transform: translatez(0) rotate(45deg); | 6 transform: translatez(0) rotate(45deg); |
7 } | 7 } |
8 | 8 |
9 .box { | 9 .box { |
10 width: 100px; | 10 width: 100px; |
11 height: 100px; | 11 height: 100px; |
12 } | 12 } |
13 | 13 |
14 .behind { | 14 .behind { |
15 position: absolute; | 15 position: absolute; |
16 z-index: 1; | 16 z-index: 1; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 document.body.textContent = window.internals.layerTreeAsText(document, i
nternals.LAYER_TREE_INCLUDES_REPAINT_RECTS); | 57 document.body.textContent = window.internals.layerTreeAsText(document, i
nternals.LAYER_TREE_INCLUDES_REPAINT_RECTS); |
58 document.body.style.whiteSpace = 'pre'; | 58 document.body.style.whiteSpace = 'pre'; |
59 } | 59 } |
60 </script> | 60 </script> |
61 </head> | 61 </head> |
62 <body onload="runTest()"> | 62 <body onload="runTest()"> |
63 <div class="compositedAndRotated box behind"></div> | 63 <div class="compositedAndRotated box behind"></div> |
64 <div class="box middle"></div> | 64 <div class="box middle"></div> |
65 <div class="box top"></div> | 65 <div class="box top"></div> |
66 </body> | 66 </body> |
OLD | NEW |