mirror of
https://github.com/RGBCube/serenity
synced 2025-07-01 17:02:12 +00:00
LibWeb: Add stub reset algorithm for HTMLOutputElement
This commit is contained in:
parent
119e58a8c1
commit
56efd60755
2 changed files with 10 additions and 0 deletions
|
@ -17,4 +17,12 @@ HTMLOutputElement::HTMLOutputElement(DOM::Document& document, DOM::QualifiedName
|
|||
|
||||
HTMLOutputElement::~HTMLOutputElement() = default;
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/form-elements.html#the-output-element:concept-form-reset-control
|
||||
void HTMLOutputElement::reset_algorithm()
|
||||
{
|
||||
// 1. FIXME: String replace all with this element's default value within this element.
|
||||
|
||||
// 2. FIXME: Set this element's default value override to null.
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue