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

Unified Diff: LayoutTests/touchadjustment/scroll-delegation/iframe-with-mainframe-scroll-offset.html

Issue 13818029: Remove TiledBacking / TileCache code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 7 years, 8 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/touchadjustment/scroll-delegation/iframe-with-mainframe-scroll-offset.html
diff --git a/LayoutTests/touchadjustment/scroll-delegation/iframe-with-mainframe-scroll-offset.html b/LayoutTests/touchadjustment/scroll-delegation/iframe-with-mainframe-scroll-offset.html
deleted file mode 100644
index e1b99ff09df01ffd9b8f809b3ebf842e3835b321..0000000000000000000000000000000000000000
--- a/LayoutTests/touchadjustment/scroll-delegation/iframe-with-mainframe-scroll-offset.html
+++ /dev/null
@@ -1,72 +0,0 @@
-<html>
-<head>
- <script src="../../fast/js/resources/js-test-pre.js"></script>
- <style>
- #scrolloffsetcontainer {
- position: absolute;
- top: 500px;
- height: 1000px;
- }
- body {
- margin: 0px;
- }
- </style>
-</head>
-<body onload="runTests()">
-
-<div id=scrolloffsetcontainer>
- <iframe frameborder='0px' src='data:text/html,
- <html>
- <head>
- <style>
- #div0 { position: absolute; left: 50px; top: 50px; width: 300px; height: 300px; box-sizing: border-box; }
- #div1 { position: absolute; left: 50px; top: 50px; width: 200px; height: 100px; box-sizing: border-box; }
- </style>
- </head>
- <body>
- <div id=div0>
- <div id=div1></div>
- </div>
- </body>
- </html>'>
- </iframe>
- <p id='description'></p>
- <div id='console'></div>
-</div>
-
-<script>
- function testRoundTouch(x, y, radius)
- {
- var x = x - radius;
- var y = y - radius;
- var width = radius * 2;
- var height = radius * 2;
- var zoomableRect = internals.bestZoomableAreaForTouchPoint(x, y, width, height, document);
- return zoomableRect;
- }
-
- function testDirectTouches()
- {
- zoomableArea = testRoundTouch(100, 600, 10);
- shouldEvaluateTo('zoomableArea.top', 600);
- shouldEvaluateTo('zoomableArea.left', 100);
- shouldEvaluateTo('zoomableArea.width', 200);
- shouldEvaluateTo('zoomableArea.height', 100);
- }
-
- function runTests()
- {
- if (window.testRunner && window.internals && internals.touchNodeAdjustedToBestClickableNode && internals.setDelegatesScrolling) {
- description('Test iframe with main frame scroll offset case of tap-to-zoom mechanics.');
- window.scrollBy(0,500);
- internals.setDelegatesScrolling(true, document);
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- testDirectTouches();
- isSuccessfullyParsed();
- testRunner.notifyDone();
- }
- }
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698