Interface MediaQueryList

All Superinterfaces:
EventTarget, MediaList

public interface MediaQueryList extends MediaList, EventTarget
Based on W3C's MediaQueryList interface.

For backwards compatibility, it extends the deprecated MediaList interface.

  • Method Details

    • getMedia

      String getMedia()
      Get the serialized form of this media query list.
      Returns:
      the serialized form of this media query list.
    • getMediaText

      @Deprecated default String getMediaText()
      Deprecated.
      Get the serialized form of this media query list.
      Specified by:
      getMediaText in interface MediaList
      Returns:
      the serialized form of this media query list.
    • setMediaText

      @Deprecated default void setMediaText(String mediaText) throws DOMException
      Deprecated.
      Sets the media attribute, which the current specification defines to be read-only.
      Specified by:
      setMediaText in interface MediaList
      Throws:
      DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this media list is read-only.
    • deleteMedium

      @Deprecated default void deleteMedium(String oldMedium) throws DOMException
      Deprecated.
      Deletes a medium from this list, which the current specification does not support.
      Specified by:
      deleteMedium in interface MediaList
      Throws:
      DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this media list is read-only.
    • appendMedium

      @Deprecated default void appendMedium(String newMedium) throws DOMException
      Deprecated.
      Appends a medium to this list, which the current specification does not support.
      Specified by:
      appendMedium in interface MediaList
      Throws:
      DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this media list is read-only.