Files
ladybird/Tests/LibWeb/Text/expected/wpt-import/webstorage
Shannon Booth f6e9d04603 LibWeb/HTML: Disable storage indexed properties to avoid duplicate keys
Storage keys are strings, even when they look numeric. Advertising
support for indexed properties caused numeric keys (e.g. "0") to be
exposed twice during enumeration: once via indexed property enumeration
and once via named properties.

Disable indexed property support while keeping the indexed setter
enabled, so assignments like storage[42] = "x" still work by coercing
the index to a string key, without introducing a separate indexed
property space.
2026-02-01 08:35:36 -05:00
..