| Module: | |
| Inherits from: | |
| Declared In: | |
Overview
Use the links in the table of contents to the left to access the documentation.
Functions
- canPlayType
- load
- pause
- play
DOMString canPlayType(
in DOMString type);
void load() raises (DOMException);
Member Data
- autobuffer
- autoplay
- buffered
- controls
- currentSrc
- currentTime
- defaultPlaybackRate
- duration
- ended
- error
- HAVE_CURRENT_DATA
- HAVE_ENOUGH_DATA
- HAVE_FUTURE_DATA
- HAVE_METADATA
- HAVE_NOTHING
- loop
- muted
- NETWORK_EMPTY
- NETWORK_IDLE
- NETWORK_LOADED
- NETWORK_LOADING
- NETWORK_NO_SOURCE
- networkState
- paused
- playbackRate
- played
- readyState
- seekable
- seeking
- src
- startTime
- volume
attribute boolean autobuffer;
attribute boolean autoplay;
attribute boolean controls;
readonly attribute DOMString currentSrc;
attribute float currentTime setter raises (DOMException);
attribute float defaultPlaybackRate;
readonly attribute float duration;
readonly attribute boolean ended;
const unsigned short HAVE_CURRENT_DATA = 2;
const unsigned short HAVE_ENOUGH_DATA = 4;
const unsigned short HAVE_FUTURE_DATA = 3;
const unsigned short HAVE_METADATA = 1;
const unsigned short HAVE_NOTHING = 0;
const unsigned short NETWORK_EMPTY = 0;
const unsigned short NETWORK_IDLE = 1;
const unsigned short NETWORK_LOADED = 3;
const unsigned short NETWORK_LOADING = 2;
const unsigned short NETWORK_NO_SOURCE = 4;
readonly attribute unsigned short networkState;
readonly attribute boolean paused;
attribute float playbackRate;
readonly attribute unsigned short readyState;
readonly attribute boolean seeking;
readonly attribute float startTime;
attribute float volume setter raises (DOMException);
Last Updated: 2009-05-29