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/.
6 * For more information see nsIPointerEvent.idl.
8 * Portions Copyright 2013 Microsoft Open Technologies, Inc. */
10 interface WindowProxy;
12 [Pref="dom.w3c_pointer_events.enabled",
14 interface PointerEvent : MouseEvent
16 constructor(DOMString type, optional PointerEventInit eventInitDict = {});
19 readonly attribute long pointerId;
22 readonly attribute long width;
24 readonly attribute long height;
26 readonly attribute float pressure;
28 readonly attribute float tangentialPressure;
30 readonly attribute long tiltX;
32 readonly attribute long tiltY;
34 readonly attribute long twist;
37 readonly attribute DOMString pointerType;
38 readonly attribute boolean isPrimary;
39 sequence<PointerEvent> getCoalescedEvents();
42 dictionary PointerEventInit : MouseEventInit
48 float tangentialPressure = 0;
52 DOMString pointerType = "";
53 boolean isPrimary = false;
54 sequence<PointerEvent> coalescedEvents = [];