aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/body.rs
Commit message (Expand)AuthorAgeFilesLines
* Move `ScriptToConstellationMsg` to `constellation_traits` (#36364)Martin Robinson2025-04-051-1/+1
* Consume BOM in the `text()` method of fetch bodies (#36192)Andreu Botella2025-03-281-1/+8
* Fix content-type when creating a `Request` with `FormData` body (#36194)Andreu Botella2025-03-281-1/+1
* Use read all bytes when consuming body (#36048)Gregory Terzian2025-03-261-192/+104
* feat: add CanGc argument in get_dictionary_property (#36156)Arya Nair2025-03-251-4/+4
* Migrate to the 2024 edition (#35755)Simon Wülker2025-03-131-6/+6
* Update rustfmt to the 2024 style edition (#35764)Simon Wülker2025-03-031-5/+5
* refactor: add CanGc as argument to Promise::reject_error (#35646)Yerkebulan Tulibergenov2025-02-251-9/+11
* refactor: add CanGc as argument to Promise::reject_native (#35640)Yerkebulan Tulibergenov2025-02-251-9/+11
* refactor: add CanGc as argument to Promise::reject (#35622)Yerkebulan Tulibergenov2025-02-231-2/+2
* refactor: add CanGc as argument to Promise::resolve (#35616)Yerkebulan Tulibergenov2025-02-231-6/+8
* refactor: add CanGc as argument to create_buffer_source (#35597)Yerkebulan Tulibergenov2025-02-221-5/+6
* Propagate `CanGc` arguments through callers in constructors (#35541)Auguste Baum2025-02-201-3/+8
* Move various reflector types and traits to script_bindings (#35279)Josh Matthews2025-02-041-1/+1
* script: Implement the Bytes() method on Request and Response (#35250)shanehandley2025-02-021-12/+20
* Remove UTF-8 BOM before parsing JSON (#35175)shanehandley2025-01-271-4/+24
* script: Feature-gate all crown support. (#35055)Josh Matthews2025-01-181-4/+4
* script: Limit public exports. (#34915)Josh Matthews2025-01-101-16/+19
* script: Unsilence all main thread `TaskQueue` errors (#34849)Martin Robinson2025-01-071-7/+6
* ReadableStream: remove the use of get_js_stream and use DomRoot<ReadableStrea...Taym Haddadi2025-01-051-8/+10
* script: Move `TaskManager` to `GlobalScope` (#34827)Martin Robinson2025-01-041-15/+7
* script: Eliminate code duplication in the task queue (#34798)Martin Robinson2025-01-011-4/+3
* Ensure ConsumeBodyPromiseHandler values are always rooted (#34194)Josh Matthews2024-12-261-4/+6
* Dom: Re-implement `ReadableStream` Part 1 : Default `Reader` and `Controller`...Gregory Terzian2024-12-171-5/+6
* build: upgrade rustc to 1.81.0 (#34270)Mukilan Thiyagarajan2024-12-121-5/+1
* Consistently use `Dom` in native promise handlers (#34167)tanishka2024-11-071-5/+8
* Replace CanGC note calls with arguments passed by callers (#33978)Wulan Seruniati Salim2024-10-231-1/+1
* Propagate CanGc when interacting with readable streams. (#33975)Josh Matthews2024-10-231-19/+19
* Mark promise creation methods with CanGc (#33928)Josh Matthews2024-10-221-4/+4
* Replace CanGc::note() with arguments passed by callers (#33917)Wulan Seruniati Salim2024-10-201-2/+3
* Various CanGc fixes in 8 files (#33893)chickenleaf2024-10-181-3/+9
* Use `ROUTER::add_typed_route` instead of `ROUTER::add_route` everywhere (#33866)Simon Wülker2024-10-181-7/+6
* CanGc fixes in components/script/dom (#33880)tanishka2024-10-171-1/+1
* Various CanGc fixes in components/script/dom (#33706)webbeef2024-10-081-9/+12
* clippy: Fix let_and_return warnings (#31964)Oluwatobi Sofela2024-04-011-4/+1
* clippy: remove unneeded return statements (#31923)Azhar Ismagulova2024-03-281-1/+1
* clippy: Fix clone-on-copy warnings (#31877)Oluwatobi Sofela2024-03-261-5/+5
* clippy: Fix `explicit_auto_deref` warnings in `components/script` (#31837)Oluwatobi Sofela2024-03-231-1/+1
* clippy: Fix needless borrow warnings (#31813)Oluwatobi Sofela2024-03-211-6/+6
* clippy: Fix several warnings (#31710)RustAndMetal2024-03-181-1/+1
* rustdoc: Fix many rustdoc errors (#31147)Martin Robinson2024-01-221-3/+3
* Replace script_plugins with a clippy like rustc driver (named crown) (#30508)Samson2023-12-011-2/+2
* Use Foo_Binding instead of FooBinding for namespace modules (#30447)Samson2023-09-301-1/+1
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-24/+19
* No tracing of nop traceable fields (#29926)Samson2023-08-041-0/+4
* Fix formatting.Josh Matthews2023-05-201-2/+1
* Remove unused argument from AlreadyInRealm::assert.Josh Matthews2023-05-201-2/+1
* Remove global argument from Promise::new_in_current_realm.Josh Matthews2023-05-201-1/+1
* fix streaming request bodies, terminate fetch if the body stream errorsGregory Terzian2020-06-161-42/+85
* Avoid sending a new chunk when the body is already doneCYBAI2020-06-131-3/+30