From a0ed8bdb5728a34ab02d5e05e818358d7bd36c77 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 27 Mar 2024 11:25:15 +0100 Subject: [PATCH] LibWeb: Remove outdated comment about definite calc() sizes We already do determine whether calc() sizes are definite, so this comment was not necessary. --- Userland/Libraries/LibWeb/Layout/LayoutState.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Layout/LayoutState.cpp b/Userland/Libraries/LibWeb/Layout/LayoutState.cpp index 775877c304a..acd8870ba64 100644 --- a/Userland/Libraries/LibWeb/Layout/LayoutState.cpp +++ b/Userland/Libraries/LibWeb/Layout/LayoutState.cpp @@ -466,7 +466,6 @@ void LayoutState::UsedValues::set_node(NodeWithStyle& node, UsedValues const* co } return false; } - // FIXME: Determine if calc() value is definite. return false; };