Bug 80021

Summary: Web Inspector: render large arrays as trees.
Product: WebKit Reporter: Pavel Feldman <pfeldman>
Component: Web Inspector (Deprecated)Assignee: Nobody <webkit-unassigned>
Status: RESOLVED DUPLICATE    
Severity: Normal CC: apavlov, bweinstein, joepeck, keishi, loislo, pfeldman, pmuellr, rik, timothy, yurys
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   

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 ***