Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: LayoutTests/platform/chromium-android/compositing/layer-creation/overflow-scrolling-touch.html

Issue 12254005: Merge 141769 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>
-

Powered by Google App Engine
This is Rietveld 408576698