mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 19:47:17 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
7 lines
326 B
Plaintext
7 lines
326 B
Plaintext
// 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 WindowProxy? view = null, optional DOMString data = "undefined");
|
|
};
|