mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 03:47:48 +02:00
10 lines
309 B
Plaintext
10 lines
309 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;
|
|
};
|