| Index: third_party/WebCore/dom/WheelEvent.idl
|
| diff --git a/third_party/WebCore/dom/WheelEvent.idl b/third_party/WebCore/dom/WheelEvent.idl
|
| index 0282525fb19902d8de1b93df912dfd90722831d9..b57fd0e9b02004595275e46a65e43860377fe809 100644
|
| --- a/third_party/WebCore/dom/WheelEvent.idl
|
| +++ b/third_party/WebCore/dom/WheelEvent.idl
|
| @@ -20,25 +20,14 @@
|
|
|
| module events {
|
|
|
| - // Based off of proposed IDL interface for WheelEvent:
|
| - interface WheelEvent : UIEvent {
|
| - readonly attribute long screenX;
|
| - readonly attribute long screenY;
|
| - readonly attribute long clientX;
|
| - readonly attribute long clientY;
|
| - readonly attribute boolean ctrlKey;
|
| - readonly attribute boolean shiftKey;
|
| - readonly attribute boolean altKey;
|
| - readonly attribute boolean metaKey;
|
| + // Based off http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html#events-wheelevents
|
| + interface WheelEvent : MouseEvent
|
| + {
|
| readonly attribute long wheelDelta;
|
| readonly attribute long wheelDeltaX;
|
| readonly attribute long wheelDeltaY;
|
|
|
| - // WebKit Extensions
|
| - readonly attribute long offsetX;
|
| - readonly attribute long offsetY;
|
| - readonly attribute long x;
|
| - readonly attribute long y;
|
| + // WebKit Extension
|
| readonly attribute boolean webkitDirectionInvertedFromDevice;
|
|
|
| #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
|
|
|