Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / DragEvent.webidl
blob03c2e6f614455b556e9a2e047605e9a12e96ac4e
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  */
7 interface DragEvent : MouseEvent
9   readonly attribute DataTransfer? dataTransfer;
11   [Throws]
12   void initDragEvent(DOMString type,
13                      boolean canBubble,
14                      boolean cancelable,
15                      Window? aView,
16                      long aDetail,
17                      long aScreenX,
18                      long aScreenY,
19                      long aClientX,
20                      long aClientY,
21                      boolean aCtrlKey,
22                      boolean aAltKey,
23                      boolean aShiftKey,
24                      boolean aMetaKey,
25                      unsigned short aButton,
26                      EventTarget? aRelatedTarget,
27                      DataTransfer? aDataTransfer);