MediaQueryList.idl 287 B

12345678
  1. [Exposed=Window]
  2. interface MediaQueryList : EventTarget {
  3. readonly attribute CSSOMString media;
  4. readonly attribute boolean matches;
  5. undefined addListener(EventListener? callback);
  6. undefined removeListener(EventListener? callback);
  7. attribute EventHandler onchange;
  8. };