mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 07:34:59 +00:00
LibWeb: Add missing upcalls in HTMLSelectElement
This commit is contained in:
parent
06e54ea916
commit
76ac1b2496
1 changed files with 3 additions and 1 deletions
|
@ -21,11 +21,13 @@ HTMLSelectElement::~HTMLSelectElement()
|
|||
|
||||
void HTMLSelectElement::inserted()
|
||||
{
|
||||
HTMLElement::inserted();
|
||||
set_form(first_ancestor_of_type<HTMLFormElement>());
|
||||
}
|
||||
|
||||
void HTMLSelectElement::removed_from(DOM::Node*)
|
||||
void HTMLSelectElement::removed_from(DOM::Node* old_parent)
|
||||
{
|
||||
HTMLElement::removed_from(old_parent);
|
||||
set_form(nullptr);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue