Bug 80021 - Web Inspector: render large arrays as trees.
Summary: Web Inspector: render large arrays as trees.
Status: RESOLVED DUPLICATE of bug 64596
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (Deprecated) (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-03-01 05:15 PST by Pavel Feldman
Modified: 2012-03-01 05:32 PST (History)
10 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Pavel Feldman 2012-03-01 05:15:05 PST
doing

var a = [];
a[100000] = true;

in console and dumping a leads to a lag and unpleasant results. As a result of this change, array will be rendered as a tree with buckets:
a
  100000: true
for case above,

a
  > [0-4999]
  > [5000-9999]
  ..

for larger arrays.
Comment 1 Pavel Feldman 2012-03-01 05:32:33 PST

*** This bug has been marked as a duplicate of bug 64596 ***