From 628e1d98537c0dec03dfda5d1752c2b49d70d143 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 --- Libraries/LibWeb/CSS/Supports.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibWeb/CSS/Supports.h b/Libraries/LibWeb/CSS/Supports.h index 78463827a7c..2bd3cb8e098 100644 --- a/Libraries/LibWeb/CSS/Supports.h +++ b/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;