| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 [InitializedByEventConstructor] readonly attribute long wheelDeltaY; | 29 [InitializedByEventConstructor] readonly attribute long wheelDeltaY; |
| 30 [InitializedByEventConstructor] readonly attribute unsigned long deltaMode; | 30 [InitializedByEventConstructor] readonly attribute unsigned long deltaMode; |
| 31 | 31 |
| 32 readonly attribute long wheelDelta; | 32 readonly attribute long wheelDelta; |
| 33 | 33 |
| 34 // WebKit Extension | 34 // WebKit Extension |
| 35 readonly attribute boolean webkitDirectionInvertedFromDevice; | 35 readonly attribute boolean webkitDirectionInvertedFromDevice; |
| 36 | 36 |
| 37 void initWebKitWheelEvent([Default=Undefined] optional long wheelDeltaX, | 37 void initWebKitWheelEvent([Default=Undefined] optional long wheelDeltaX, |
| 38 [Default=Undefined] optional long wheelDeltaY, | 38 [Default=Undefined] optional long wheelDeltaY, |
| 39 [Default=Undefined] optional Window view, | 39 [Default=Undefined] optional DOMWindow view, |
| 40 [Default=Undefined] optional long screenX, | 40 [Default=Undefined] optional long screenX, |
| 41 [Default=Undefined] optional long screenY, | 41 [Default=Undefined] optional long screenY, |
| 42 [Default=Undefined] optional long clientX, | 42 [Default=Undefined] optional long clientX, |
| 43 [Default=Undefined] optional long clientY, | 43 [Default=Undefined] optional long clientY, |
| 44 [Default=Undefined] optional boolean ctrlKey, | 44 [Default=Undefined] optional boolean ctrlKey, |
| 45 [Default=Undefined] optional boolean altKey, | 45 [Default=Undefined] optional boolean altKey, |
| 46 [Default=Undefined] optional boolean shiftKey, | 46 [Default=Undefined] optional boolean shiftKey, |
| 47 [Default=Undefined] optional boolean metaKey); | 47 [Default=Undefined] optional boolean metaKey); |
| 48 }; | 48 }; |
| OLD | NEW |