| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 [MeasureAs=MouseEventMovementY] readonly attribute long movementY; | 61 [MeasureAs=MouseEventMovementY] readonly attribute long movementY; |
| 62 | 62 |
| 63 // Non-standard | 63 // Non-standard |
| 64 [MeasureAs=MouseEventOffsetX] readonly attribute long offsetX; | 64 [MeasureAs=MouseEventOffsetX] readonly attribute long offsetX; |
| 65 [MeasureAs=MouseEventOffsetY] readonly attribute long offsetY; | 65 [MeasureAs=MouseEventOffsetY] readonly attribute long offsetY; |
| 66 [MeasureAs=MouseEventX] readonly attribute long x; | 66 [MeasureAs=MouseEventX] readonly attribute long x; |
| 67 [MeasureAs=MouseEventY] readonly attribute long y; | 67 [MeasureAs=MouseEventY] readonly attribute long y; |
| 68 [MeasureAs=MouseEventFromElement] readonly attribute Node fromElement; | 68 [MeasureAs=MouseEventFromElement] readonly attribute Node fromElement; |
| 69 [MeasureAs=MouseEventToElement] readonly attribute Node toElement; | 69 [MeasureAs=MouseEventToElement] readonly attribute Node toElement; |
| 70 [MeasureAs=MouseEventWhich] readonly attribute long which; | 70 [MeasureAs=MouseEventWhich] readonly attribute long which; |
| 71 [MeasureAs=PrefixedMouseEventMovementX, ImplementedAs=movementX] readonly at
tribute long webkitMovementX; | 71 [DeprecateAs=PrefixedMouseEventMovementX, ImplementedAs=movementX] readonly
attribute long webkitMovementX; |
| 72 [MeasureAs=PrefixedMouseEventMovementY, ImplementedAs=movementY] readonly at
tribute long webkitMovementY; | 72 [DeprecateAs=PrefixedMouseEventMovementY, ImplementedAs=movementY] readonly
attribute long webkitMovementY; |
| 73 | 73 |
| 74 // FIXME: this belongs on the DragEvent interface | 74 // FIXME: this belongs on the DragEvent interface |
| 75 readonly attribute DataTransfer dataTransfer; | 75 readonly attribute DataTransfer dataTransfer; |
| 76 }; | 76 }; |
| OLD | NEW |