From b3cc320718f74a5b15933b02491b540b951075fa Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sun, 9 Apr 2023 17:59:36 +0200 Subject: [PATCH] LibWeb/HTML: Use correct spec link for multipart/form-data encoding --- Userland/Libraries/LibWeb/HTML/FormControlInfrastructure.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/HTML/FormControlInfrastructure.cpp b/Userland/Libraries/LibWeb/HTML/FormControlInfrastructure.cpp index 1f5aa3a1ef..64a3fa288f 100644 --- a/Userland/Libraries/LibWeb/HTML/FormControlInfrastructure.cpp +++ b/Userland/Libraries/LibWeb/HTML/FormControlInfrastructure.cpp @@ -176,7 +176,7 @@ WebIDL::ExceptionOr>> construct_entry_list(J return entry_list; } -// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart-form-data +// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-encoding-algorithm ErrorOr serialize_to_multipart_form_data(Vector const& entry_list) { auto normalize_line_breaks = [](StringView value) -> ErrorOr {