Browse Source

LibWeb: Use W3C urls for CSS-VALUES-3 spec links

Sam Atkins 3 years ago
parent
commit
d28eeeb207
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Libraries/LibWeb/CSS/StyleValue.h

+ 1 - 1
Userland/Libraries/LibWeb/CSS/StyleValue.h

@@ -573,7 +573,7 @@ public:
     using CalcNumberValue = Variant<float, NonnullOwnPtr<CalcNumberSum>>;
     using CalcNumberValue = Variant<float, NonnullOwnPtr<CalcNumberSum>>;
     using CalcValue = Variant<float, CSS::Length, NonnullOwnPtr<CalcSum>>;
     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 {
     struct CalcSum {
         CalcSum(NonnullOwnPtr<CalcProduct> first_calc_product, NonnullOwnPtrVector<CalcSumPartWithOperator> additional)
         CalcSum(NonnullOwnPtr<CalcProduct> first_calc_product, NonnullOwnPtrVector<CalcSumPartWithOperator> additional)
             : first_calc_product(move(first_calc_product))
             : first_calc_product(move(first_calc_product))