summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLScriptElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLScriptElement.cpp')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLScriptElement.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLScriptElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLScriptElement.cpp
index ec436062af..763d7d86a5 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLScriptElement.cpp
+++ b/Userland/Libraries/LibWeb/HTML/HTMLScriptElement.cpp
@@ -38,8 +38,8 @@
namespace Web::HTML {
-HTMLScriptElement::HTMLScriptElement(DOM::Document& document, const QualifiedName& qualified_name)
- : HTMLElement(document, qualified_name)
+HTMLScriptElement::HTMLScriptElement(DOM::Document& document, QualifiedName qualified_name)
+ : HTMLElement(document, move(qualified_name))
{
}