mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 17:28:30 +00:00
LibWeb: Make node cloning methods const
This commit is contained in:
committed by
Jelle Raaijmakers
parent
31b20e38ee
commit
a467005855
@@ -651,7 +651,7 @@ void HTMLScriptElement::set_async(bool async)
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/scripting.html#script-processing-model:concept-node-clone-ext
|
||||
WebIDL::ExceptionOr<void> HTMLScriptElement::cloned(Node& copy, bool subtree)
|
||||
WebIDL::ExceptionOr<void> HTMLScriptElement::cloned(Node& copy, bool subtree) const
|
||||
{
|
||||
TRY(Base::cloned(copy, subtree));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user