mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 20:17:13 +02:00
9 lines
353 B
Plaintext
9 lines
353 B
Plaintext
#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");
|
|
};
|