[Webkit-unassigned] [Bug 27322] Inspector: Create New DOM Storage Items via DataGrid

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jul 28 21:14:21 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=27322





--- Comment #5 from Timothy Hatcher <timothy at hatcher.name>  2009-07-28 21:14:21 PDT ---
(From update of attachment 33577)
> +        var cnt = 0;
> +        for (var i in this.columns)
> +            emptyData[cnt++] = '';

This looks funny. Shouldn't this just be:

for (var column in this.columns)
    emptyData[column] = '';

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list