| 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;
|
|
|