summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2021-10-15 19:47:32 +0100
committerLinus Groh <mail@linusgroh.de>2021-10-15 21:05:35 +0100
commitd28eeeb2074b56a7abf4368ac890a49efbe74153 (patch)
tree85e419ed014b2ed7edf538733c1322c181fce4b8 /Userland/Libraries
parent2d0c6bde016bcb682808cd527730faa216b7b146 (diff)
downloadserenity-d28eeeb2074b56a7abf4368ac890a49efbe74153.zip
LibWeb: Use W3C urls for CSS-VALUES-3 spec links
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibWeb/CSS/StyleValue.h2
1 files changed, 1 insertions, 1 deletions
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<float, NonnullOwnPtr<CalcNumberSum>>;
using CalcValue = Variant<float, CSS::Length, NonnullOwnPtr<CalcSum>>;
- // 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<CalcProduct> first_calc_product, NonnullOwnPtrVector<CalcSumPartWithOperator> additional)
: first_calc_product(move(first_calc_product))