From 72a752685f14dc1ef52599afa10b3604355a5172 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Tue, 4 Oct 2022 23:42:21 +0100 Subject: [PATCH] LibWeb: Add missing link to Fetch::Infrastructure::Response member --- Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Responses.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Responses.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Responses.h index d7c879223f1..e603e720edf 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Responses.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Responses.h @@ -111,6 +111,7 @@ private: // A response can have an associated aborted flag, which is initially unset. bool m_aborted { false }; + // https://fetch.spec.whatwg.org/#concept-response-url-list // A response has an associated URL list (a list of zero or more URLs). Unless stated otherwise, it is the empty list. Vector m_url_list;