From 4963dea504743bae18275417ea913a63ef6c9a5c Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Thu, 21 Aug 2025 18:57:41 +0200 Subject: [PATCH] LibWeb/XHR: Remove outdated FIXME about Streams not integrated in XHR Streams were integrated into XHR::send() in: https://github.com/SerenityOS/serenity/pull/24132 --- Libraries/LibWeb/XHR/XMLHttpRequest.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Libraries/LibWeb/XHR/XMLHttpRequest.cpp b/Libraries/LibWeb/XHR/XMLHttpRequest.cpp index 7b98cdca6de..bed0a9e5273 100644 --- a/Libraries/LibWeb/XHR/XMLHttpRequest.cpp +++ b/Libraries/LibWeb/XHR/XMLHttpRequest.cpp @@ -808,8 +808,6 @@ WebIDL::ExceptionOr XMLHttpRequest::send(Optional()) 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: auto process_body_chunks = GC::create_function(heap(), [this, length](ByteBuffer byte_buffer) { // 1. Append bytes to this’s received bytes.