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.
16 lines
766 B
Plaintext
16 lines
766 B
Plaintext
// https://w3c.github.io/uievents/#compositionevent
|
|
[Exposed=Window]
|
|
interface CompositionEvent : UIEvent {
|
|
constructor(DOMString type, optional CompositionEventInit eventInitDict = {});
|
|
readonly attribute USVString data;
|
|
|
|
// https://w3c.github.io/uievents/#dom-compositionevent-initcompositionevent
|
|
// FIXME: The spec uses WindowProxy rather than Window (see https://github.com/w3c/uievents/pull/379).
|
|
undefined initCompositionEvent(DOMString typeArg, optional boolean bubblesArg = false, optional boolean cancelableArg = false, optional WindowProxy? viewArg = null, optional DOMString dataArg = "");
|
|
};
|
|
|
|
// https://w3c.github.io/uievents/#dictdef-compositioneventinit
|
|
dictionary CompositionEventInit : UIEventInit {
|
|
DOMString data = "";
|
|
};
|