From d82f8a4b16097ad2b5d0d61787c8f72c0f43830f Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Thu, 8 Aug 2024 17:04:25 +0200 Subject: [PATCH] LibWeb: Update two spec URIs No functional changes. --- Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp index 9b8775d353f..637c3235beb 100644 --- a/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp +++ b/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp @@ -1019,7 +1019,7 @@ void FlexFormattingContext::resolve_flexible_lengths() } } -// https://drafts.csswg.org/css-flexbox-1/#algo-cross-item +// https://www.w3.org/TR/css-flexbox-1/#hypothetical-cross-size void FlexFormattingContext::determine_hypothetical_cross_size_of_item(FlexItem& item, bool resolve_percentage_min_max_sizes) { // Determine the hypothetical cross size of each item by performing layout @@ -1149,7 +1149,7 @@ void FlexFormattingContext::calculate_cross_size_of_each_flex_line() } } -// https://www.w3.org/TR/css-flexbox-1/#algo-stretch +// https://www.w3.org/TR/css-flexbox-1/#cross-sizing void FlexFormattingContext::determine_used_cross_size_of_each_flex_item() { for (auto& flex_line : m_flex_lines) {