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 // https://w3c.github.io/uievents/#interface-MouseEvent | 20 // https://w3c.github.io/uievents/#interface-MouseEvent |
21 | 21 |
22 [ | 22 [ |
23 Constructor(DOMString type, optional MouseEventInit eventInitDict), | 23 Constructor(DOMString type, optional MouseEventInit eventInitDict), |
24 ConstructorCallWith=ScriptState, | 24 ConstructorCallWith=ScriptState, |
25 ] interface MouseEvent : UIEvent { | 25 ] interface MouseEvent : UIEvent { |
26 readonly attribute long screenX; | 26 readonly attribute double screenX; |
27 readonly attribute long screenY; | 27 readonly attribute double screenY; |
28 readonly attribute long clientX; | 28 readonly attribute double clientX; |
29 readonly attribute long clientY; | 29 readonly attribute double clientY; |
30 readonly attribute boolean ctrlKey; | 30 readonly attribute boolean ctrlKey; |
31 readonly attribute boolean shiftKey; | 31 readonly attribute boolean shiftKey; |
32 readonly attribute boolean altKey; | 32 readonly attribute boolean altKey; |
33 readonly attribute boolean metaKey; | 33 readonly attribute boolean metaKey; |
34 readonly attribute short button; | 34 readonly attribute short button; |
35 readonly attribute unsigned short buttons; | 35 readonly attribute unsigned short buttons; |
36 readonly attribute EventTarget? relatedTarget; | 36 readonly attribute EventTarget? relatedTarget; |
37 boolean getModifierState(DOMString keyArg); | 37 boolean getModifierState(DOMString keyArg); |
38 | 38 |
39 // https://w3c.github.io/uievents/#idl-interface-MouseEvent-initializers | 39 // https://w3c.github.io/uievents/#idl-interface-MouseEvent-initializers |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 // https://html.spec.whatwg.org/multipage/scripting.html#MouseEvent-partial | 74 // https://html.spec.whatwg.org/multipage/scripting.html#MouseEvent-partial |
75 [RuntimeEnabled=ExperimentalCanvasFeatures] readonly attribute DOMString? re
gion; | 75 [RuntimeEnabled=ExperimentalCanvasFeatures] readonly attribute DOMString? re
gion; |
76 | 76 |
77 // Non-standard | 77 // Non-standard |
78 [MeasureAs=MouseEventFromElement] readonly attribute Node fromElement; | 78 [MeasureAs=MouseEventFromElement] readonly attribute Node fromElement; |
79 [MeasureAs=MouseEventToElement] readonly attribute Node toElement; | 79 [MeasureAs=MouseEventToElement] readonly attribute Node toElement; |
80 [MeasureAs=MouseEventWhich] readonly attribute long which; | 80 [MeasureAs=MouseEventWhich] readonly attribute long which; |
81 [Measure] readonly attribute long layerX; | 81 [Measure] readonly attribute long layerX; |
82 [Measure] readonly attribute long layerY; | 82 [Measure] readonly attribute long layerY; |
83 }; | 83 }; |
OLD | NEW |