mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
18 lines
555 B
Plaintext
18 lines
555 B
Plaintext
// https://w3c.github.io/uievents/#inputevent
|
|
[Exposed=Window]
|
|
interface InputEvent : UIEvent {
|
|
constructor(DOMString type, optional InputEventInit eventInitDict = {});
|
|
readonly attribute Utf16USVString? data;
|
|
readonly attribute boolean isComposing;
|
|
readonly attribute DOMString inputType;
|
|
|
|
sequence<StaticRange> getTargetRanges();
|
|
};
|
|
|
|
// https://w3c.github.io/uievents/#dictdef-inputeventinit
|
|
dictionary InputEventInit : UIEventInit {
|
|
Utf16DOMString? data = null;
|
|
boolean isComposing = false;
|
|
DOMString inputType = "";
|
|
};
|