Implement srcObject logic for Blob media providers

This commit is contained in:
Fernando Jiménez Moreno 2019-03-26 12:52:10 +01:00
parent 3c27dc993d
commit d15640081c
4 changed files with 115 additions and 14 deletions

View file

@ -5,7 +5,7 @@
// https://html.spec.whatwg.org/multipage/#htmlmediaelement
enum CanPlayTypeResult { "" /* empty string */, "maybe", "probably" };
typedef /* (MediaStream or MediaSource or */ Blob /* ) */ MediaProvider;
typedef (MediaStream /*or MediaSource */ or Blob) MediaProvider;
[Abstract]
interface HTMLMediaElement : HTMLElement {