1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 23:34:47 -05:00
denoland-deno/ext/web
Bartek Iwańczuk b10563cb20
fix(runtime): don't crash when window is deleted (#13392)
This commit fixes an error when user deletes "window" global JS
variable. Instead of relying on "window" or "globalThis" to dispatch
"load" and "unload" events, we are default to global scope of the
worker.
2022-01-18 00:13:14 +01:00
..
00_infra.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
01_dom_exception.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
01_mimesniff.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
02_event.js fix(runtime): don't crash when window is deleted (#13392) 2022-01-18 00:13:14 +01:00
02_structured_clone.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
03_abort_signal.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
04_global_interfaces.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
05_base64.js fix(ext/web): handle no arguments in atob (#13341) 2022-01-11 17:31:13 +01:00
06_streams.js fix(streams): update TypeError message for pending reads when releasing reader (#13376) 2022-01-14 18:47:16 +01:00
06_streams_types.d.ts feat(streams): reject pending reads when releasing reader (#13375) 2022-01-14 17:34:54 +01:00
08_text_encoding.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
09_file.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
10_filereader.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
11_blob_url.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
12_location.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
13_message_port.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
blob.rs fix: a Request whose URL is a revoked blob URL should still fetch (#11947) 2021-09-08 11:29:21 +02:00
Cargo.toml chore: forward v1.17.3 to main (#13364) 2022-01-13 20:47:42 +01:00
internal.d.ts feat(cli): update to TypeScript 4.5 (#12410) 2021-12-10 09:12:21 +11:00
lib.deno_web.d.ts feat(ext/web): implement AbortSignal.prototype.throwIfAborted() (#13044) 2021-12-10 15:12:38 +01:00
lib.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
message_port.rs fix: Deno.emit crashes with BorrowMutError (#12627) 2021-11-03 09:27:36 -04:00
README.md Rename extensions/ directory to ext/ (#11643) 2021-08-11 12:27:05 +02:00

deno web

Op crate that implements Event, TextEncoder, TextDecoder and File API (https://w3c.github.io/FileAPI).

Testing for text encoding is done via WPT in cli/.