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