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

Unified Diff: LayoutTests/fast/events/gesture-pinch-fake-mouse-wheel.html

Issue 889803004: Add touchpad pinch zoom support to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update tests Created 5 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
« no previous file with comments | « no previous file | LayoutTests/fast/events/gesture-pinch-zoom.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/events/gesture-pinch-fake-mouse-wheel.html
diff --git a/LayoutTests/fast/events/gesture-pinch-fake-mouse-wheel.html b/LayoutTests/fast/events/gesture-pinch-fake-mouse-wheel.html
index 9ad8e50701bde311ca621583eb51cc12787e9027..65d8f8f63515d73405dddfc8bca950876ac20014 100644
--- a/LayoutTests/fast/events/gesture-pinch-fake-mouse-wheel.html
+++ b/LayoutTests/fast/events/gesture-pinch-fake-mouse-wheel.html
@@ -1,6 +1,6 @@
<!DOCTYPE html>
<script src="../../resources/js-test.js"></script>
-<div onmousewheel="mouseWheel(event)" style="margin: 0px 0; width: 100px; height: 100px; background-color: blue;"></div>
+<div onwheel="wheel(event)" style="margin: 0px 0; width: 100px; height: 100px; background-color: blue;"></div>
<script>
var gotWheelEvent = false;
var testX = 40;
@@ -8,7 +8,7 @@ var testY = 70;
var testScale = 0.5;
var tolerance = 0.001;
-function mouseWheel(event)
+function wheel(event)
{
shouldBeFalse('gotWheelEvent');
gotWheelEvent = true;
« no previous file with comments | « no previous file | LayoutTests/fast/events/gesture-pinch-zoom.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698