Skip to content

Commit

Permalink
Firefox supports OffscreenCanvas's convertToBlob() (#18412)
Browse files Browse the repository at this point in the history
I tested to confirm that Firefox supports both the standard name
(`convertToBlob`) in addition to the alternative name (`toBlob`), not
merely in place of it.

In other words:

`'convertToBlob' in OffscreenCanvas.prototype` → `true`
  • Loading branch information
ddbeck committed Dec 12, 2022
1 parent a03870c commit cf5c315
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions api/OffscreenCanvas.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,15 @@
},
"chrome_android": "mirror",
"edge": "mirror",
"firefox": {
"version_added": "105",
"alternative_name": "toBlob"
},
"firefox": [
{
"version_added": "105"
},
{
"version_added": "105",
"alternative_name": "toBlob"
}
],
"firefox_android": "mirror",
"ie": {
"version_added": false
Expand Down

0 comments on commit cf5c315

Please sign in to comment.