From a7c75f6fdba456eaccd2dde81a052bb9a7920e12 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Thu, 19 Dec 2024 12:18:07 +0100 Subject: [PATCH] LibWeb: Update CSS resolved values spec link to editor's draft URL --- Libraries/LibWeb/CSS/ResolvedCSSStyleDeclaration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibWeb/CSS/ResolvedCSSStyleDeclaration.cpp b/Libraries/LibWeb/CSS/ResolvedCSSStyleDeclaration.cpp index 0d39d43bbf4..5415ac89288 100644 --- a/Libraries/LibWeb/CSS/ResolvedCSSStyleDeclaration.cpp +++ b/Libraries/LibWeb/CSS/ResolvedCSSStyleDeclaration.cpp @@ -203,7 +203,7 @@ RefPtr ResolvedCSSStyleDeclaration::style_value_for_propert // A limited number of properties have special rules for producing their "resolved value". // We also have to manually construct shorthands from their longhands here. // Everything else uses the computed value. - // https://www.w3.org/TR/cssom-1/#resolved-values + // https://drafts.csswg.org/cssom/#resolved-values // The resolved value for a given longhand property can be determined as follows: switch (property_id) {