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

Unified Diff: LayoutTests/fast/events/wheelevent-direction-inverted-from-device.html

Issue 440963002: Remove WheelEvent.webkitDirectionInvertedFromDevice (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | LayoutTests/fast/events/wheelevent-direction-inverted-from-device-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/events/wheelevent-direction-inverted-from-device.html
diff --git a/LayoutTests/fast/events/wheelevent-direction-inverted-from-device.html b/LayoutTests/fast/events/wheelevent-direction-inverted-from-device.html
deleted file mode 100644
index 9e1fac2b0e550af54990e11f9f9c7686870618f3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/events/wheelevent-direction-inverted-from-device.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<body>
-
-<p id="description"></p>
-<div style="width:100px; height:80px; background-color:green; color:white" id="target">Scroll over me</div>
-<div id="console"></div>
-
-<script src="../../resources/js-test.js"></script>
-
-<script>
-description("This test checks for the existence of the webkitDirectionInvertedFromDevice property in the WheelEvent.");
-var t = document.getElementById("target");
-var c = document.getElementById('console');
-var result = undefined;
-function scrollHandler(event) {
- result = event.webkitDirectionInvertedFromDevice;
- event.preventDefault();
-};
-t.addEventListener('mousewheel', scrollHandler, false);
-
-if (window.testRunner && window.eventSender) {
- debug("sending scroll event to green target");
- eventSender.mouseMoveTo(t.offsetLeft + 10, t.offsetTop + 10);
- eventSender.continuousMouseScrollBy(0,10);
- shouldBeTrue('result != undefined');
-}
-</script>
-
-
-</body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/fast/events/wheelevent-direction-inverted-from-device-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698