mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
8 lines
353 B
Text
8 lines
353 B
Text
#import <UIEvents/UIEvent.idl>
|
|
|
|
// https://w3c.github.io/uievents/#textevent
|
|
[Exposed=Window]
|
|
interface TextEvent : UIEvent {
|
|
readonly attribute DOMString data;
|
|
undefined initTextEvent(DOMString type, optional boolean bubbles = false, optional boolean cancelable = false, optional Window? view = null, optional DOMString data = "undefined");
|
|
};
|