Bug 1526591 - Remove devtools.inspector.shapesHighlighter.enabled pref. r=rcaliman
[gecko.git] / dom / webidl / PointerEvent.webidl
blob37750ce738eb2217242b03d3f10b190d36ef3786
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  Constructor(DOMString type, optional PointerEventInit eventInitDict)]
14 interface PointerEvent : MouseEvent
16   [NeedsCallerType]
17   readonly attribute long pointerId;
19   [NeedsCallerType]
20   readonly attribute long width;
21   [NeedsCallerType]
22   readonly attribute long height;
23   [NeedsCallerType]
24   readonly attribute float pressure;
25   [NeedsCallerType]
26   readonly attribute float tangentialPressure;
27   [NeedsCallerType]
28   readonly attribute long tiltX;
29   [NeedsCallerType]
30   readonly attribute long tiltY;
31   [NeedsCallerType]
32   readonly attribute long twist;
34   [NeedsCallerType]
35   readonly attribute DOMString pointerType;
36   readonly attribute boolean isPrimary;
37   sequence<PointerEvent> getCoalescedEvents();
40 dictionary PointerEventInit : MouseEventInit
42   long pointerId = 0;
43   long width = 1;
44   long height = 1;
45   float pressure = 0;
46   float tangentialPressure = 0;
47   long tiltX = 0;
48   long tiltY = 0;
49   long twist = 0;
50   DOMString pointerType = "";
51   boolean isPrimary = false;
52   sequence<PointerEvent> coalescedEvents = [];