w3c/mediasession

Update to constructor operations

Closed this issue · 2 comments

[Constructor(optional MediaMetadataInit init), Exposed=Window]
interface MediaMetadata {
  ...
};

should be replaced by

[Exposed=Window]
interface MediaMetadata {
  constructor(optional MediaMetadataInit init);
  ...
};

since the syntax is changed in whatwg/webidl#778.

Not sure if the editors are working on this or not. I can submit a request if no one is working on this.

Fixed in #236