From d28eeeb2074b56a7abf4368ac890a49efbe74153 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 15 Oct 2021 19:47:32 +0100 Subject: [PATCH] LibWeb: Use W3C urls for CSS-VALUES-3 spec links --- Userland/Libraries/LibWeb/CSS/StyleValue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/CSS/StyleValue.h b/Userland/Libraries/LibWeb/CSS/StyleValue.h index 903f67dce6..fe1f26e8b7 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleValue.h +++ b/Userland/Libraries/LibWeb/CSS/StyleValue.h @@ -573,7 +573,7 @@ public: using CalcNumberValue = Variant>; using CalcValue = Variant>; - // This represents that: https://drafts.csswg.org/css-values-3/#calc-syntax + // This represents that: https://www.w3.org/TR/css-values-3/#calc-syntax struct CalcSum { CalcSum(NonnullOwnPtr first_calc_product, NonnullOwnPtrVector additional) : first_calc_product(move(first_calc_product))