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

Unified Diff: LayoutTests/platform/chromium/accessibility/scroll-to-global-point-nested.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/platform/chromium/accessibility/scroll-to-global-point-nested.html
diff --git a/LayoutTests/platform/chromium/accessibility/scroll-to-global-point-nested.html b/LayoutTests/platform/chromium/accessibility/scroll-to-global-point-nested.html
deleted file mode 100644
index 492671617d010a960839e9bb4babb8b477460a45..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/accessibility/scroll-to-global-point-nested.html
+++ /dev/null
@@ -1,76 +0,0 @@
-<html>
-<head>
-<link rel="stylesheet" href="../../../fast/js/resources/js-test-style.css">
-<script src="../../../fast/js/resources/js-test-pre.js"></script>
-<style>
-button {
- border: 0;
-}
-</style>
-</head>
-<body>
-
-<p id="description"></p>
-
-<div style="border: 1px solid #000; height: 5000px;">5000-pixel box</div>
-
-<div id="outer_container" style="height: 100px; overflow: scroll">
- <div style="border: 1px solid #000; height: 5000px;">5000-pixel box</div>
- <div id="inner_container" style="height: 100px; overflow: scroll">
- <div style="border: 1px solid #000; height: 5000px;">5000-pixel box</div>
- <button id="target">Target</button>
- <div style="border: 1px solid #000; height: 5000px;">5000-pixel box</div>
- </div>
- <div style="border: 1px solid #000; height: 5000px;">5000-pixel box</div>
-</div>
-
-<div style="border: 1px solid #000; height: 5000px;">5000-pixel box</div>
-
-<div id="console"></div>
-
-<script>
-description("Tests that scrolling an element to a specific point can successfully scroll multiple nested scrolling views'.");
-
-function runTest() {
- window.outerContainer = document.getElementById("outer_container");
- window.innerContainer = document.getElementById("inner_container");
- window.target = document.getElementById("target");
-
- if (window.accessibilityController) {
- target.focus();
- var targetAccessibleObject = accessibilityController.focusedElement;
- }
-
- // Reset the initial scroll positions (since calling focus() can scroll the page too).
- window.scrollTo(0, 0);
- outerContainer.scrollTop = 0;
- innerContainer.scrollTop = 0;
- shouldBe("window.pageYOffset", "0");
- shouldBe("outerContainer.scrollTop", "0");
- shouldBe("innerContainer.scrollTop", "0");
- shouldBeGreaterThanOrEqual("target.getBoundingClientRect().top", "15000");
-
- // Scroll to various locations and check.
-
- if (window.accessibilityController)
- targetAccessibleObject.scrollToGlobalPoint(0, 0);
- shouldBe("target.getBoundingClientRect().top", "0");
-
- if (window.accessibilityController)
- targetAccessibleObject.scrollToGlobalPoint(0, 300);
- shouldBe("target.getBoundingClientRect().top", "300");
-
- if (window.accessibilityController)
- targetAccessibleObject.scrollToGlobalPoint(0, 3000);
- shouldBe("target.getBoundingClientRect().top", "3000");
-
- finishJSTest();
-}
-
-runTest();
-
-</script>
-
-<script src="../../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698