mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 10:59:13 +00:00
feat(ext/canvas): enhance createImageBitmap
specification compliance (#25517)
This commit is contained in:
parent
b440d2d4f7
commit
1eb4142143
27 changed files with 1796 additions and 308 deletions
|
@ -361,6 +361,12 @@ core.registerErrorBuilder(
|
|||
return new DOMException(msg, "DataError");
|
||||
},
|
||||
);
|
||||
core.registerErrorBuilder(
|
||||
"DOMExceptionInvalidStateError",
|
||||
function DOMExceptionInvalidStateError(msg) {
|
||||
return new DOMException(msg, "InvalidStateError");
|
||||
},
|
||||
);
|
||||
|
||||
function runtimeStart(
|
||||
denoVersion,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue