| Index: third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-with-opaque-background-will-change.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-with-opaque-background-will-change.html b/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-with-opaque-background-will-change.html
|
| index ac1de10ab5c0fa8c5306df080fcb1fd207d66297..7de8c238de05aeea266c24c71c408cf288e347a2 100644
|
| --- a/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-with-opaque-background-will-change.html
|
| +++ b/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-with-opaque-background-will-change.html
|
| @@ -1,19 +1,9 @@
|
| +<!doctype HTML>
|
| +<script src="resources/composited-scroll.js"></script>
|
| <script>
|
| if (window.testRunner)
|
| window.testRunner.dumpAsText();
|
|
|
| -function hasOpaqueCompositedScrollingContentsLayer(layer) {
|
| - if (layer.name == "Scrolling Contents Layer")
|
| - return layer.contentsOpaque;
|
| - if (layer.children) {
|
| - for (var i = 0; i < layer.children.length; i++) {
|
| - if (hasOpaqueCompositedScrollingContentsLayer(layer.children[i]))
|
| - return true;
|
| - }
|
| - }
|
| - return false;
|
| -}
|
| -
|
| onload = function() {
|
| if (!window.testRunner || !window.internals)
|
| return;
|
|
|