mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-28 03:44:15 +00:00
15 lines
412 B
Text
15 lines
412 B
Text
|
|
#import <UIEvents/MouseEvent.idl>
|
||
|
|
#import <HTML/DataTransfer.idl>
|
||
|
|
|
||
|
|
// https://html.spec.whatwg.org/multipage/dnd.html#the-dragevent-interface
|
||
|
|
[Exposed=Window]
|
||
|
|
interface DragEvent : MouseEvent {
|
||
|
|
constructor(DOMString type, optional DragEventInit eventInitDict = {});
|
||
|
|
|
||
|
|
readonly attribute DataTransfer? dataTransfer;
|
||
|
|
};
|
||
|
|
|
||
|
|
dictionary DragEventInit : MouseEventInit {
|
||
|
|
DataTransfer? dataTransfer = null;
|
||
|
|
};
|