diff --git a/Userland/Libraries/LibWeb/Layout/TextNode.cpp b/Userland/Libraries/LibWeb/Layout/TextNode.cpp index 083f1500d4..aea5ab54de 100644 --- a/Userland/Libraries/LibWeb/Layout/TextNode.cpp +++ b/Userland/Libraries/LibWeb/Layout/TextNode.cpp @@ -111,7 +111,7 @@ Optional TextNode::ChunkIterator::next() // Otherwise, commit the newline! ++m_iterator; - auto result = try_commit_chunk(start_of_chunk, m_iterator, true); + auto result = try_commit_chunk(start_of_chunk, m_iterator, true, true); VERIFY(result.has_value()); return result.release_value(); }