From 1c6d85200879e5bca4208a2c402d22aacfe4797d Mon Sep 17 00:00:00 2001 From: Psychpsyo Date: Sat, 23 Nov 2024 19:13:09 +0100 Subject: [PATCH] LibWeb: Fix incorrect spec link for the @supports rule (cherry picked from commit 628e1d98537c0dec03dfda5d1752c2b49d70d143) --- Userland/Libraries/LibWeb/CSS/Supports.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/CSS/Supports.h b/Userland/Libraries/LibWeb/CSS/Supports.h index 07743f973f972c..6e00d3d02ea3c7 100644 --- a/Userland/Libraries/LibWeb/CSS/Supports.h +++ b/Userland/Libraries/LibWeb/CSS/Supports.h @@ -15,7 +15,7 @@ namespace Web::CSS { -// https://www.w3.org/TR/css-conditional-4/#at-supports +// https://www.w3.org/TR/css-conditional-3/#at-supports class Supports final : public RefCounted { friend class Parser::Parser;