| Index: third_party/WebCore/dom/WheelEvent.idl
|
| diff --git a/third_party/WebCore/dom/WheelEvent.idl b/third_party/WebCore/dom/WheelEvent.idl
|
| index b09dd01aa8a08d64c17636012db6758abe116562..7ba9cf410d612109bd65c3517bd2b697c081eb5b 100644
|
| --- a/third_party/WebCore/dom/WheelEvent.idl
|
| +++ b/third_party/WebCore/dom/WheelEvent.idl
|
| @@ -22,8 +22,13 @@
|
| ConstructorConditional=DOM4_EVENTS_CONSTRUCTOR,
|
| ConstructorTemplate=Event
|
| ] interface WheelEvent : MouseEvent {
|
| + const unsigned long DOM_DELTA_PIXEL = 0x00;
|
| + const unsigned long DOM_DELTA_LINE = 0x01;
|
| + const unsigned long DOM_DELTA_PAGE = 0x02;
|
| +
|
| [InitializedByEventConstructor] readonly attribute long wheelDeltaX;
|
| [InitializedByEventConstructor] readonly attribute long wheelDeltaY;
|
| + [InitializedByEventConstructor] readonly attribute unsigned long deltaMode;
|
|
|
| readonly attribute long wheelDelta;
|
|
|
|
|