Index: LayoutTests/platform/chromium-android/compositing/layer-creation/overflow-scrolling-touch.html |
=================================================================== |
--- LayoutTests/platform/chromium-android/compositing/layer-creation/overflow-scrolling-touch.html (revision 142739) |
+++ LayoutTests/platform/chromium-android/compositing/layer-creation/overflow-scrolling-touch.html (working copy) |
@@ -1,61 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
- <style> |
- .trigger { |
- width: 200px; |
- height: 200px; |
- background-color: blue; |
- -webkit-transform: translateZ(0); |
- } |
- |
- .overflow-scrolling-touch { |
- width: 200px; |
- height: 200px; |
- position: absolute; |
- top: 0px; |
- left: 0px; |
- overflow: scroll; |
- -webkit-overflow-scrolling: touch; |
- background-color: blue; |
- } |
- |
- .content { |
- width: 1000px; |
- height: 1000px; |
- position: relative; |
- top: 50px; |
- left: 50px; |
- background-color: green; |
- } |
- </style> |
- |
- <script type="text/javascript" charset="utf-8"> |
- if (window.layoutTestController) { |
- layoutTestController.dumpAsText(); |
- layoutTestController.waitUntilDone(); |
- } |
- |
- function doTest() |
- { |
- if (window.layoutTestController) { |
- document.getElementById('layers').innerText = window.internals.layerTreeAsText(document); |
- layoutTestController.notifyDone(); |
- } |
- } |
- |
- window.addEventListener('load', doTest, false); |
- </script> |
-</head> |
- |
-<body> |
- <div class="trigger"></div> |
- |
- <div class="overflow-scrolling-touch"> |
- <div class="content"></div> |
- </div> |
- |
- <pre id="layers">Layer tree goes here in DRT</pre> |
-</body> |
-</html> |
- |