Bug 1850713: remove duplicated setting of early hint preloader id in `ScriptLoader...
[gecko.git] / dom / webidl / PointerEvent.webidl
blobbdcdd1b8e3dd21281f943969321b3b558b024b58
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * For more information see nsIPointerEvent.idl.
7  *
8  * Portions Copyright 2013 Microsoft Open Technologies, Inc. */
10 interface WindowProxy;
12 [Exposed=Window]
13 interface PointerEvent : MouseEvent
15   constructor(DOMString type, optional PointerEventInit eventInitDict = {});
17   readonly attribute long pointerId;
19   readonly attribute long width;
20   readonly attribute long height;
21   readonly attribute float pressure;
22   readonly attribute float tangentialPressure;
23   readonly attribute long tiltX;
24   readonly attribute long tiltY;
25   readonly attribute long twist;
27   readonly attribute DOMString pointerType;
28   readonly attribute boolean isPrimary;
29   sequence<PointerEvent> getCoalescedEvents();
30   sequence<PointerEvent> getPredictedEvents();
33 dictionary PointerEventInit : MouseEventInit
35   long pointerId = 0;
36   long width = 1;
37   long height = 1;
38   float pressure = 0;
39   float tangentialPressure = 0;
40   long tiltX = 0;
41   long tiltY = 0;
42   long twist = 0;
43   DOMString pointerType = "";
44   boolean isPrimary = false;
45   sequence<PointerEvent> coalescedEvents = [];
46   sequence<PointerEvent> predictedEvents = [];