| 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 |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
| 18 */ | 18 */ |
| 19 | 19 |
| 20 // Introduced in DOM Level 2: | 20 // Introduced in DOM Level 2: |
| 21 interface MouseEvent : UIEvent { | 21 [ |
| 22 V8SkipVTableValidation |
| 23 ] interface MouseEvent : UIEvent { |
| 22 readonly attribute long screenX; | 24 readonly attribute long screenX; |
| 23 readonly attribute long screenY; | 25 readonly attribute long screenY; |
| 24 readonly attribute long clientX; | 26 readonly attribute long clientX; |
| 25 readonly attribute long clientY; | 27 readonly attribute long clientY; |
| 26 [Conditional=POINTER_LOCK] readonly attribute long webkitMovementX; | 28 [Conditional=POINTER_LOCK] readonly attribute long webkitMovementX; |
| 27 [Conditional=POINTER_LOCK] readonly attribute long webkitMovementY; | 29 [Conditional=POINTER_LOCK] readonly attribute long webkitMovementY; |
| 28 readonly attribute boolean ctrlKey; | 30 readonly attribute boolean ctrlKey; |
| 29 readonly attribute boolean shiftKey; | 31 readonly attribute boolean shiftKey; |
| 30 readonly attribute boolean altKey; | 32 readonly attribute boolean altKey; |
| 31 readonly attribute boolean metaKey; | 33 readonly attribute boolean metaKey; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 54 readonly attribute long x; | 56 readonly attribute long x; |
| 55 readonly attribute long y; | 57 readonly attribute long y; |
| 56 readonly attribute Node fromElement; | 58 readonly attribute Node fromElement; |
| 57 readonly attribute Node toElement; | 59 readonly attribute Node toElement; |
| 58 | 60 |
| 59 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT | 61 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT |
| 60 readonly attribute Clipboard dataTransfer; | 62 readonly attribute Clipboard dataTransfer; |
| 61 #endif | 63 #endif |
| 62 }; | 64 }; |
| 63 | 65 |
| OLD | NEW |