Bug 106891 - Web Inspector: array grouping does not work for big and negative number keys
Summary: Web Inspector: array grouping does not work for big and negative number keys
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (Deprecated) (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Andrey Adaikin
URL:
Keywords:
Depends on:
Blocks: 106897 106998
  Show dependency treegraph
 
Reported: 2013-01-15 04:48 PST by Andrey Adaikin
Modified: 2013-01-16 03:01 PST (History)
9 users (show)

See Also:


Attachments
Patch (5.62 KB, patch)
2013-01-15 04:52 PST, Andrey Adaikin
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Andrey Adaikin 2013-01-15 04:48:14 PST
Patch to follow.

Test case:

    var e = [];
    for (var i = 0; i < 10; ++i)
        e[i] = i;
    e[123] = 123;
    e[-123] = -123;
    e[4294967295] = 4294967295;
    e[4294967296] = 4294967296;
    console.dir(e);
Comment 1 Andrey Adaikin 2013-01-15 04:52:55 PST
Created attachment 182741 [details]
Patch
Comment 2 WebKit Review Bot 2013-01-16 01:25:51 PST
Comment on attachment 182741 [details]
Patch

Clearing flags on attachment: 182741

Committed r139848: <http://trac.webkit.org/changeset/139848>
Comment 3 WebKit Review Bot 2013-01-16 01:25:54 PST
All reviewed patches have been landed.  Closing bug.