Bug 106891

Summary: Web Inspector: array grouping does not work for big and negative number keys
Product: WebKit Reporter: Andrey Adaikin <aandrey>
Component: Web Inspector (Deprecated)Assignee: Andrey Adaikin <aandrey>
Status: RESOLVED FIXED    
Severity: Normal CC: apavlov, keishi, loislo, pfeldman, pmuellr, vsevik, web-inspector-bugs, webkit.review.bot, yurys
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 106897, 106998    
Attachments:
Description Flags
Patch none

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.