Bug 1799694 - Rename action/menu button class names in unified extensions. r=Itiel...
[gecko.git] / dom / webidl / PointerEvent.webidl
blob19d70c71d7ddebac34372f75e6ab479e4f57567a
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   [NeedsCallerType]
18   readonly attribute long pointerId;
20   [NeedsCallerType]
21   readonly attribute long width;
22   [NeedsCallerType]
23   readonly attribute long height;
24   [NeedsCallerType]
25   readonly attribute float pressure;
26   [NeedsCallerType]
27   readonly attribute float tangentialPressure;
28   [NeedsCallerType]
29   readonly attribute long tiltX;
30   [NeedsCallerType]
31   readonly attribute long tiltY;
32   [NeedsCallerType]
33   readonly attribute long twist;
35   [NeedsCallerType]
36   readonly attribute DOMString pointerType;
37   readonly attribute boolean isPrimary;
38   sequence<PointerEvent> getCoalescedEvents();
39   sequence<PointerEvent> getPredictedEvents();
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 = [];
55   sequence<PointerEvent> predictedEvents = [];