mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-21 16:58:58 +00:00
LibWeb/XHR: Remove outdated FIXME about Streams not integrated in XHR
Some checks are pending
CI / macOS, arm64, Sanitizer, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer, Clang (push) Waiting to run
Package the js repl as a binary artifact / Linux, arm64 (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
Some checks are pending
CI / macOS, arm64, Sanitizer, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer, Clang (push) Waiting to run
Package the js repl as a binary artifact / Linux, arm64 (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
Streams were integrated into XHR::send() in: https://github.com/SerenityOS/serenity/pull/24132
This commit is contained in:
parent
5d94119f4c
commit
4963dea504
Notes:
github-actions[bot]
2025-08-26 11:19:59 +00:00
Author: https://github.com/kennethmyhra
Commit: 4963dea504
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5943
Reviewed-by: https://github.com/gmta ✅
Reviewed-by: https://github.com/trflynn89 ✅
1 changed files with 0 additions and 2 deletions
|
@ -808,8 +808,6 @@ WebIDL::ExceptionOr<void> XMLHttpRequest::send(Optional<DocumentOrXMLHttpRequest
|
||||||
if (!length.has<u64>())
|
if (!length.has<u64>())
|
||||||
length = 0;
|
length = 0;
|
||||||
|
|
||||||
// FIXME: We can't implement these steps yet, as we don't fully implement the Streams standard.
|
|
||||||
|
|
||||||
// 10. Let processBodyChunk given bytes be these steps:
|
// 10. Let processBodyChunk given bytes be these steps:
|
||||||
auto process_body_chunks = GC::create_function(heap(), [this, length](ByteBuffer byte_buffer) {
|
auto process_body_chunks = GC::create_function(heap(), [this, length](ByteBuffer byte_buffer) {
|
||||||
// 1. Append bytes to this’s received bytes.
|
// 1. Append bytes to this’s received bytes.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue