
org.stjs.javascript.dom.MediaError Maven / Gradle / Ivy
The newest version!
package org.stjs.javascript.dom;
public class MediaError {
/**
* The fetching process for the media resource was aborted by the user agent
* at the user's request.
*/
public final int MEDIA_ERR_ABORTED = 1;
/**
* A network error of some description caused the user agent to stop
* fetching the media resource, after the resource was established to be
* usable.
*/
public final int MEDIA_ERR_NETWORK = 2;
/**
* An error of some description occurred while decoding the media resource,
* after the resource was established to be usable.
*/
public final int MEDIA_ERR_DECODE = 3;
/** The media resource indicated by the src attribute was not suitable. */
public final int MEDIA_ERR_SRC_NOT_SUPPORTED = 4;
public int code;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy