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 | ||
Pavel Feldman
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.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Pavel Feldman
*** This bug has been marked as a duplicate of bug 64596 ***