mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-02 11:34:19 +00:00
LibWeb: Make node cloning methods const
This commit is contained in:
committed by
Jelle Raaijmakers
parent
31b20e38ee
commit
a467005855
@@ -136,7 +136,7 @@ void HTMLTextAreaElement::clear_algorithm()
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/forms.html#the-textarea-element:concept-node-clone-ext
|
||||
WebIDL::ExceptionOr<void> HTMLTextAreaElement::cloned(DOM::Node& copy, bool subtree)
|
||||
WebIDL::ExceptionOr<void> HTMLTextAreaElement::cloned(DOM::Node& copy, bool subtree) const
|
||||
{
|
||||
TRY(Base::cloned(copy, subtree));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user