mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
LibWeb: Add Document::invalidate_layout()
This function allows you to throw away the entire layout tree if that's something you want to do. It's certainly not super cheap to reconstruct, but hey, who am I to tell you what to do? :^)
This commit is contained in:
@@ -196,14 +196,22 @@ URL Document::complete_url(const String& string) const
|
||||
return m_url.complete_url(string);
|
||||
}
|
||||
|
||||
void Document::force_layout()
|
||||
void Document::invalidate_layout()
|
||||
{
|
||||
m_layout_root = nullptr;
|
||||
}
|
||||
|
||||
void Document::force_layout()
|
||||
{
|
||||
invalidate_layout();
|
||||
layout();
|
||||
}
|
||||
|
||||
void Document::layout()
|
||||
{
|
||||
if (!frame())
|
||||
return;
|
||||
|
||||
if (!m_layout_root) {
|
||||
LayoutTreeBuilder tree_builder;
|
||||
m_layout_root = tree_builder.build(*this);
|
||||
|
||||
Reference in New Issue
Block a user