1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +00:00

LibWeb: Implement reset algorithm for HTMLInputElement

This commit is contained in:
Srikavin Ramkumar 2022-12-22 19:33:37 -05:00 committed by Andreas Kling
parent 6032d122c2
commit de44e0faf5
2 changed files with 24 additions and 0 deletions

View file

@ -112,6 +112,8 @@ public:
// https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize
virtual bool is_auto_capitalize_inheriting() const override { return true; }
virtual void reset_algorithm() override;
virtual void form_associated_element_was_inserted() override;
// ^HTMLElement