1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 21:48:11 +00:00

LibWeb: Add stub reset algorithm for HTMLTextAreaElement

This commit is contained in:
Srikavin Ramkumar 2022-12-22 19:58:21 -05:00 committed by Andreas Kling
parent b55c9f36dc
commit 119e58a8c1
2 changed files with 8 additions and 0 deletions

View file

@ -48,6 +48,8 @@ public:
// https://html.spec.whatwg.org/multipage/forms.html#category-label
virtual bool is_labelable() const override { return true; }
virtual void reset_algorithm() override;
private:
HTMLTextAreaElement(DOM::Document&, DOM::QualifiedName);