Files
ladybird/Libraries/LibWeb/UIEvents/InputEvent.idl
Shannon Booth cc6e048bd6 LibWeb+LibIDL: Remove support for #import directives during parsing
These no longer serve any purpose now that we run the IDLGenerator
on all of these files at once.
2026-04-24 20:08:29 +02:00

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 = "";
};