Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <script> | 1 <script> |
|
chrishtr
2016/09/02 01:19:38
codereview claims this is identical to compositing
Stephen Chennney
2016/09/06 21:06:21
It is the same as the test previously named overfl
| |
| 2 if (window.testRunner) | 2 if (window.testRunner) |
| 3 window.testRunner.dumpAsText(); | 3 window.testRunner.dumpAsText(); |
| 4 | 4 |
| 5 function hasOpaqueCompositedScrollingContentsLayer(layer) { | 5 function hasOpaqueCompositedScrollingContentsLayer(layer) { |
| 6 if (layer.name == "Scrolling Contents Layer") | 6 if (layer.name == "Scrolling Contents Layer") |
| 7 return layer.contentsOpaque; | 7 return layer.contentsOpaque; |
| 8 if (layer.children) { | 8 if (layer.children) { |
| 9 for (var i = 0; i < layer.children.length; i++) { | 9 for (var i = 0; i < layer.children.length; i++) { |
| 10 if (hasOpaqueCompositedScrollingContentsLayer(layer.children[i])) | 10 if (hasOpaqueCompositedScrollingContentsLayer(layer.children[i])) |
| 11 return true; | 11 return true; |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 39 .spacer { | 39 .spacer { |
| 40 height: 300px; | 40 height: 300px; |
| 41 } | 41 } |
| 42 </style> | 42 </style> |
| 43 <!-- The scroller's Scrolling Contents Layer should be opaque due to the opaque | 43 <!-- The scroller's Scrolling Contents Layer should be opaque due to the opaque |
| 44 color background. Even though the background has a content-box clip there | 44 color background. Even though the background has a content-box clip there |
| 45 is no gap because the scroller has no padding. This means that we will be | 45 is no gap because the scroller has no padding. This means that we will be |
| 46 able to draw text with subpixel anti-aliasing. | 46 able to draw text with subpixel anti-aliasing. |
| 47 --> | 47 --> |
| 48 <div id="scroller"><div class="spacer"></div></div> | 48 <div id="scroller"><div class="spacer"></div></div> |
| OLD | NEW |