HTMLMediaElement.idl 359 B

12345678910111213141516171819
  1. #import <HTML/HTMLElement.idl>
  2. enum CanPlayTypeResult {
  3. "",
  4. "maybe",
  5. "probably"
  6. };
  7. interface HTMLMediaElement : HTMLElement {
  8. [Reflect] attribute DOMString src;
  9. [Reflect] attribute boolean autoplay;
  10. [Reflect] attribute boolean loop;
  11. [Reflect] attribute boolean controls;
  12. CanPlayTypeResult canPlayType(DOMString type);
  13. };