Skip to content

Add missing message property to MediaError #400

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8876,6 +8876,7 @@ declare var MediaEncryptedEvent: {

interface MediaError {
readonly code: number;
readonly message: string;
readonly msExtendedCode: number;
readonly MEDIA_ERR_ABORTED: number;
readonly MEDIA_ERR_DECODE: number;
Expand Down
17 changes: 17 additions & 0 deletions inputfiles/overridingTypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,23 @@
}
}
},
"MediaError": {
"name": "MediaError",
"properties": {
"property": {
"message": {
"specs": "html5",
"name": "message",
"tags": "Media",
"type": "DOMString",
"type-original": "DOMString",
"read-only": 1,
"exposed": "Window",
"default": "\"\""
}
}
}
},
"IDBIndex": {
"name": "IDBIndex",
"properties": {
Expand Down