LibHTML: Rename Document's invalidate_{style,layout}() to update_foo()

This commit is contained in:
Andreas Kling 2019-10-14 17:56:19 +02:00
commit 667b31746a
Notes: sideshowbarker 2024-07-19 11:41:52 +09:00
5 changed files with 13 additions and 13 deletions

View file

@ -29,7 +29,7 @@ void HTMLLinkElement::inserted_into(Node&)
return;
}
document().add_sheet(*sheet);
document().invalidate_style();
document().update_style();
});
}
}