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

Unified Diff: LayoutTests/platform/chromium/fast/events/rtl-scrollbar.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/fast/events/rtl-scrollbar.html
diff --git a/LayoutTests/platform/chromium/fast/events/rtl-scrollbar.html b/LayoutTests/platform/chromium/fast/events/rtl-scrollbar.html
deleted file mode 100644
index f9af3a61568d824bb747c5699e1ba56dbce3d8d1..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/fast/events/rtl-scrollbar.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../../../fast/js/resources/js-test-pre.js"></script>
-</head>
-<body style="margin:0">
-<div id="overflow" dir="rtl" style="border:2px solid black;overflow:auto;height:400px;width:400px; position:absolute;">
-<div style="background-color:red;height:720px"></div>
-<div style="background-color:green;height:1600px"></div>
-</div>
-
-<script>
-description('Test that we can scroll down an RTL element with its left-side scrollbar.');
-
-var scrollTop = document.getElementById('overflow').scrollTop;
-
-if (window.testRunner)
- testRunner.waitUntilDone();
-
-if (window.eventSender) {
- var node = document.getElementById('overflow');
- eventSender.mouseMoveTo(node.offsetLeft + 5, node.offsetTop + node.offsetHeight - 50);
- eventSender.mouseDown();
- eventSender.mouseUp();
- setTimeout(finished, 0);
-}
-
-function finished()
-{
- shouldBeTrue('document.getElementById(\'overflow\').scrollTop > scrollTop');
- window.testRunner.notifyDone();
-}
-
-var successfullyParsed = true;
-</script>
-<script src="../../../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698