diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Bindings/WindowObject.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Bindings/WindowObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Bindings/WindowObject.h b/Userland/Libraries/LibWeb/Bindings/WindowObject.h index 29d80a196c..29b36de544 100644 --- a/Userland/Libraries/LibWeb/Bindings/WindowObject.h +++ b/Userland/Libraries/LibWeb/Bindings/WindowObject.h @@ -75,7 +75,7 @@ public: return *it->value; auto* constructor = heap().allocate<T>(*this, *this); m_constructors.set(class_name, constructor); - define_property(class_name, constructor, JS::Attribute::Writable | JS::Attribute::Configurable); + define_property(class_name, JS::Value(constructor), JS::Attribute::Writable | JS::Attribute::Configurable); return *constructor; } |