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

LibWeb: Implement [SameObject] behavior for HTMLFormElement.elements

This commit is contained in:
Andreas Kling 2022-11-24 19:04:05 +01:00
parent 7d8ff0c581
commit d7c58aa58d
3 changed files with 11 additions and 7 deletions

View file

@ -39,6 +39,8 @@ private:
bool m_firing_submission_events { false };
Vector<JS::GCPtr<HTMLElement>> m_associated_elements;
JS::GCPtr<DOM::HTMLCollection> mutable m_elements;
};
}