LibWeb: Fix location.reload.length

This was accidentally being set to JS::Attribute::Enumerable
instead of 0.
This commit is contained in:
Luke 2020-06-06 07:36:38 +01:00 committed by Andreas Kling
commit 9de92ae4c1
Notes: sideshowbarker 2024-07-19 05:48:48 +09:00

View file

@ -47,7 +47,7 @@ LocationObject::LocationObject()
define_native_property("search", search_getter, nullptr, attr);
define_native_property("protocol", protocol_getter, nullptr, attr);
define_native_function("reload", reload, JS::Attribute::Enumerable);
define_native_function("reload", reload, 0, JS::Attribute::Enumerable);
}
LocationObject::~LocationObject()