LibWeb: Fix spec link on <textarea>'s value setter

This commit is contained in:
Timothy Flynn 2024-03-14 09:11:36 -04:00 committed by Andreas Kling
parent a9b8840a82
commit 324feb04e7
Notes: sideshowbarker 2024-07-17 07:19:27 +09:00

View File

@ -129,7 +129,7 @@ String HTMLTextAreaElement::value() const
return m_raw_value;
}
// https://html.spec.whatwg.org/multipage/form-elements.html#dom-output-value
// https://html.spec.whatwg.org/multipage/form-elements.html#dom-textarea-value
void HTMLTextAreaElement::set_value(String const& value)
{
// FIXME: 1. Let oldAPIValue be this element's API value.