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
parent 61d5bec739
commit 9de92ae4c1

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()