From 10b534849dcb07fbaa600e5c5b58ca784ced7737 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 19 Nov 2020 22:21:16 +0100 Subject: LibWeb: Remove ancient HTML_DEBUG debug logging --- Libraries/LibWeb/Layout/LayoutBlock.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Libraries/LibWeb/Layout/LayoutBlock.cpp') diff --git a/Libraries/LibWeb/Layout/LayoutBlock.cpp b/Libraries/LibWeb/Layout/LayoutBlock.cpp index 073bc24267..d0acaa4e89 100644 --- a/Libraries/LibWeb/Layout/LayoutBlock.cpp +++ b/Libraries/LibWeb/Layout/LayoutBlock.cpp @@ -450,10 +450,6 @@ void LayoutBlock::compute_width() total_px += value.to_px(*this); } -#ifdef HTML_DEBUG - dbg() << "Total: " << total_px; -#endif - if (!is_replaced() && !is_inline()) { // 10.3.3 Block-level, non-replaced elements in normal flow // If 'width' is not 'auto' and 'border-left-width' + 'padding-left' + 'width' + 'padding-right' + 'border-right-width' (plus any of 'margin-left' or 'margin-right' that are not 'auto') is larger than the width of the containing block, then any 'auto' values for 'margin-left' or 'margin-right' are, for the following rules, treated as zero. -- cgit v1.2.3