2023-10-25 12:27:19 -03:00
|
|
|
// https://drafts.csswg.org/cssom-view/#the-mediaquerylist-interface
|
2021-09-12 12:55:10 -03:00
|
|
|
[Exposed=Window]
|
|
|
|
|
interface MediaQueryList : EventTarget {
|
|
|
|
|
readonly attribute CSSOMString media;
|
|
|
|
|
readonly attribute boolean matches;
|
2021-09-12 20:18:28 -03:00
|
|
|
undefined addListener(EventListener? callback);
|
|
|
|
|
undefined removeListener(EventListener? callback);
|
2021-09-30 21:33:10 -03:00
|
|
|
attribute EventHandler onchange;
|
2021-09-12 12:55:10 -03:00
|
|
|
};
|