LibWeb: Add missing base class upcalls in Node::inserted() overrides

This commit is contained in:
Andreas Kling 2025-01-23 17:38:24 +01:00 committed by Andreas Kling
parent 7269fc3e52
commit 003c045589
Notes: github-actions[bot] 2025-01-23 20:40:14 +00:00
3 changed files with 4 additions and 0 deletions

View file

@ -170,6 +170,7 @@ WebIDL::ExceptionOr<void> HTMLMeterElement::set_optimum(double value)
void HTMLMeterElement::inserted()
{
Base::inserted();
create_shadow_tree_if_needed();
}