1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 18:05:08 +00:00

LibWeb: Remove unused Document::on_layout_updated hook

This commit is contained in:
Andreas Kling 2020-06-07 14:47:33 +02:00
parent 747b21782e
commit 59f9b32a44
2 changed files with 0 additions and 3 deletions

View file

@ -262,8 +262,6 @@ void Document::update_layout()
return;
layout();
if (on_layout_updated)
on_layout_updated();
}
RefPtr<LayoutNode> Document::create_layout_node(const StyleProperties*) const