LibWeb/XHR: Add missing spec comment for step 12 in XHR::send()

This commit is contained in:
Kenneth Myhra 2025-08-21 18:48:02 +02:00 committed by Tim Flynn
commit 5d94119f4c
Notes: github-actions[bot] 2025-08-26 11:20:08 +00:00

View file

@ -883,7 +883,9 @@ WebIDL::ExceptionOr<void> XMLHttpRequest::send(Optional<DocumentOrXMLHttpRequest
timer->start();
}
} else {
}
// 12. Otherwise, if thiss synchronous flag is set:
else {
// 1. Let processedResponse be false.
IGNORE_USE_IN_ESCAPING_LAMBDA bool processed_response = false;