mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 01:27:42 +00:00
LibWeb: Fix location.reload.length
This was accidentally being set to JS::Attribute::Enumerable instead of 0.
This commit is contained in:
parent
61d5bec739
commit
9de92ae4c1
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue