Bug 1610775 [wpt PR 21336] - Update urllib3 to 1.25.8, a=testonly
[gecko.git] / dom / webidl / PointerEvent.webidl
blob7c3ff8ad350b985a40453473b4a721de95166f06
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 [Pref="dom.w3c_pointer_events.enabled",
13  Exposed=Window]
14 interface PointerEvent : MouseEvent
16   constructor(DOMString type, optional PointerEventInit eventInitDict = {});
18   [NeedsCallerType]
19   readonly attribute long pointerId;
21   [NeedsCallerType]
22   readonly attribute long width;
23   [NeedsCallerType]
24   readonly attribute long height;
25   [NeedsCallerType]
26   readonly attribute float pressure;
27   [NeedsCallerType]
28   readonly attribute float tangentialPressure;
29   [NeedsCallerType]
30   readonly attribute long tiltX;
31   [NeedsCallerType]
32   readonly attribute long tiltY;
33   [NeedsCallerType]
34   readonly attribute long twist;
36   [NeedsCallerType]
37   readonly attribute DOMString pointerType;
38   readonly attribute boolean isPrimary;
39   sequence<PointerEvent> getCoalescedEvents();
42 dictionary PointerEventInit : MouseEventInit
44   long pointerId = 0;
45   long width = 1;
46   long height = 1;
47   float pressure = 0;
48   float tangentialPressure = 0;
49   long tiltX = 0;
50   long tiltY = 0;
51   long twist = 0;
52   DOMString pointerType = "";
53   boolean isPrimary = false;
54   sequence<PointerEvent> coalescedEvents = [];