From 7fe854c1318c1449d53cdfde168fb2ac5c866efa Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Tue, 17 Jun 2025 10:59:50 +0100 Subject: [PATCH] LibWeb/CSS: Link CalculationContext to new spec definition Corresponds to https://github.com/w3c/csswg-drafts/commit/ad244f3413a683e431676caabb432822730808f2 There's nothing that we need to do differently I think, but it's nice to have a clear spec definition to refer to. :^) --- Libraries/LibWeb/CSS/StyleValues/CalculatedStyleValue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibWeb/CSS/StyleValues/CalculatedStyleValue.h b/Libraries/LibWeb/CSS/StyleValues/CalculatedStyleValue.h index 54a5ea8602b..564de779bfc 100644 --- a/Libraries/LibWeb/CSS/StyleValues/CalculatedStyleValue.h +++ b/Libraries/LibWeb/CSS/StyleValues/CalculatedStyleValue.h @@ -25,7 +25,7 @@ namespace Web::CSS { class CalculationNode; -// https://drafts.csswg.org/css-values-4/#ref-for-calc-calculation%E2%91%A2%E2%91%A7 +// https://drafts.csswg.org/css-values-4/#calc-context // Contains the context available at parse-time. struct CalculationContext { Optional percentages_resolve_as {};