Bug 1885602 - Part 5: Implement navigating to the SUMO help topic from the menu heade...
[gecko.git] / dom / webidl / PointerEvent.webidl
blob4aef14c21914d35ddd9d833c6129264574bebf72
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;
30   [Func="mozilla::dom::PointerEvent::EnableGetCoalescedEvents"]
31   sequence<PointerEvent> getCoalescedEvents();
32   sequence<PointerEvent> getPredictedEvents();
35 dictionary PointerEventInit : MouseEventInit
37   long pointerId = 0;
38   long width = 1;
39   long height = 1;
40   float pressure = 0;
41   float tangentialPressure = 0;
42   long tiltX = 0;
43   long tiltY = 0;
44   long twist = 0;
45   DOMString pointerType = "";
46   boolean isPrimary = false;
47   sequence<PointerEvent> coalescedEvents = [];
48   sequence<PointerEvent> predictedEvents = [];