mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
10 lines
303 B
Plaintext
10 lines
303 B
Plaintext
[Exposed=Window]
|
|
interface MediaQueryList : EventTarget {
|
|
readonly attribute CSSOMString media;
|
|
readonly attribute boolean matches;
|
|
// TODO:
|
|
undefined addListener(EventListener? callback);
|
|
undefined removeListener(EventListener? callback);
|
|
// attribute EventHandler onchange;
|
|
};
|