0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/extensions/web
Andreu Botella 5b771e7e83
fix(extensions/web): aborting a FileReader should not affect later reads (#11381)
Currently, calling the `abort()` method on a `FileReader` object aborts
any current read operation, but it also prevents any read operation
started at some later point from starting. The File API instead
specifies that calling `abort()` should reset the `FileReader`'s state
and result, as well as removing any queued tasks from the current
operation that haven't yet run.
2021-07-14 12:08:42 +02:00
..
00_infra.js refactor: introduce primordials for ext/web (#11228) 2021-07-03 21:32:28 +02:00
01_dom_exception.js fix: inspecting prototypes of built-ins with custom inspect implementations should not throw (#11308) 2021-07-08 09:43:36 -04:00
01_mimesniff.js refactor: introduce primordials for ext/web (#11228) 2021-07-03 21:32:28 +02:00
02_event.js fix(extensiosn/web): AddEventListenerOptions.signal shouldn't be nullable (#11348) 2021-07-10 07:13:58 -07:00
02_structured_clone.js refactor: use primordials in extensions/web (#11273) 2021-07-06 14:38:12 +02:00
03_abort_signal.js refactor: use primordials in extensions/web (#11273) 2021-07-06 14:38:12 +02:00
04_global_interfaces.js refactor: use primordials in extensions/web (#11273) 2021-07-06 14:38:12 +02:00
05_base64.js refactor: use primordials in extensions/web (#11273) 2021-07-06 14:38:12 +02:00
06_streams.js fix: inspecting prototypes of built-ins with custom inspect implementations should not throw (#11308) 2021-07-08 09:43:36 -04:00
06_streams_types.d.ts fix: make WHATWG streams more compliant (#10967) 2021-06-15 13:46:02 +02:00
08_text_encoding.js refactor: use primordials in extensions/web (#11273) 2021-07-06 14:38:12 +02:00
09_file.js fix: inspecting prototypes of built-ins with custom inspect implementations should not throw (#11308) 2021-07-08 09:43:36 -04:00
10_filereader.js fix(extensions/web): aborting a FileReader should not affect later reads (#11381) 2021-07-14 12:08:42 +02:00
11_blob_url.js refactor: asynchronous blob backing store (#10969) 2021-07-05 15:34:37 +02:00
12_location.js refactor: use primordials in extensions/web (#11273) 2021-07-06 14:38:12 +02:00
13_message_port.js refactor: asynchronous blob backing store (#10969) 2021-07-05 15:34:37 +02:00
blob.rs chore: use parking_lot for synchronization primitives to align with tokio (#11289) 2021-07-06 23:48:01 -04:00
Cargo.toml chore: release crates (#11378) 2021-07-13 02:16:49 +02:00
internal.d.ts refactor: asynchronous blob backing store (#10969) 2021-07-05 15:34:37 +02:00
lib.deno_web.d.ts feat: MessageChannel and MessagePort (#11051) 2021-06-21 19:53:52 +02:00
lib.rs refactor: asynchronous blob backing store (#10969) 2021-07-05 15:34:37 +02:00
message_port.rs feat: transfer MessagePort between workers (#11076) 2021-06-22 16:30:16 +02:00
README.md refactor: merge deno_file crate into deno_web (#10914) 2021-06-10 15:26:10 +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/.