From b00a23b0b69758ebb8cc9f42755b0e3615afc161 Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Sun, 9 Jul 2023 21:04:16 +0330 Subject: [PATCH] LibWeb: Fix a spec link in CSS/Parser This pointed to the wrong part of the spec, make it point to the right part instead :P --- Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp index 1ab1e260cb..e92f1f1f82 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp @@ -8746,7 +8746,7 @@ private: ComponentValue m_component_value; }; -// https://html.spec.whatwg.org/multipage/images.html#parse-a-srcset-attribute +// https://html.spec.whatwg.org/multipage/images.html#parsing-a-sizes-attribute Length Parser::Parser::parse_as_sizes_attribute() { Optional size;