mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
14 lines
412 B
Text
14 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;
|
|
};
|