LibWeb: Remove commented-out dbgln

This is unrelated to the PR I'm working on, but keeps getting
reformatted because clang-format wants comments to start with a space.
This commit is contained in:
Sam Atkins 2021-08-30 17:22:54 +01:00 committed by Andreas Kling
parent 3492fbf9cf
commit 48a2239f60
Notes: sideshowbarker 2024-07-18 04:52:28 +09:00

View File

@ -524,7 +524,6 @@ void Node::set_needs_style_update(bool value)
if (m_needs_style_update) {
for (auto* ancestor = parent(); ancestor; ancestor = ancestor->parent()) {
//dbgln("{}", ancestor->node_name());
ancestor->m_child_needs_style_update = true;
}
document().schedule_style_update();