2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2013-04-19 03:13:35 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2019-07-09 22:02:18 +03:00
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* https://html.spec.whatwg.org/multipage/#dragevent
|
2013-04-19 03:13:35 +04:00
|
|
|
*/
|
|
|
|
|
2019-09-27 18:26:14 +03:00
|
|
|
[Exposed=Window]
|
2013-04-19 03:13:35 +04:00
|
|
|
interface DragEvent : MouseEvent
|
|
|
|
{
|
2019-09-11 17:35:28 +03:00
|
|
|
constructor(DOMString type, optional DragEventInit eventInitDict = {});
|
|
|
|
|
2013-04-19 03:13:35 +04:00
|
|
|
readonly attribute DataTransfer? dataTransfer;
|
|
|
|
|
2022-09-21 10:44:58 +03:00
|
|
|
undefined initDragEvent(DOMString type,
|
|
|
|
optional boolean canBubble = false,
|
|
|
|
optional boolean cancelable = false,
|
|
|
|
optional Window? aView = null,
|
|
|
|
optional long aDetail = 0,
|
|
|
|
optional long aScreenX = 0,
|
|
|
|
optional long aScreenY = 0,
|
|
|
|
optional long aClientX = 0,
|
|
|
|
optional long aClientY = 0,
|
|
|
|
optional boolean aCtrlKey = false,
|
|
|
|
optional boolean aAltKey = false,
|
|
|
|
optional boolean aShiftKey = false,
|
|
|
|
optional boolean aMetaKey = false,
|
|
|
|
optional unsigned short aButton = 0,
|
|
|
|
optional EventTarget? aRelatedTarget = null,
|
|
|
|
optional DataTransfer? aDataTransfer = null);
|
2013-04-19 03:13:35 +04:00
|
|
|
};
|
2015-03-04 17:52:03 +03:00
|
|
|
|
|
|
|
dictionary DragEventInit : MouseEventInit
|
|
|
|
{
|
|
|
|
DataTransfer? dataTransfer = null;
|
|
|
|
};
|