LibWeb: Add stub reset algorithm for HTMLOutputElement

This commit is contained in:
Srikavin Ramkumar
2022-12-22 20:01:19 -05:00
committed by Andreas Kling
parent 119e58a8c1
commit 56efd60755
2 changed files with 10 additions and 0 deletions

View File

@@ -41,6 +41,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:
HTMLOutputElement(DOM::Document&, DOM::QualifiedName);
};