LibWeb: Remove leftover debugging hack in process_top_layer_removals()

This commit is contained in:
Andreas Kling 2025-05-28 11:24:57 +02:00 committed by Alexander Kalenik
parent 2afe208328
commit 18d17385fb
Notes: github-actions[bot] 2025-05-29 01:48:18 +00:00

View file

@ -6125,7 +6125,7 @@ void Document::process_top_layer_removals()
GC::RootVector<GC::Ref<Element>> elements_to_remove(heap());
for (auto& element : m_top_layer_pending_removals) {
// FIXME: Implement overlay property
if (true || !element->paintable()) {
if (!element->paintable()) {
elements_to_remove.append(element);
}
}