[Webkit-unassigned] [Bug 30485] Web Inspector: Properties on Arrays and NodeLists are not logged correctly

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Oct 18 10:27:54 PDT 2009


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





--- Comment #2 from Timothy Hatcher <timothy at hatcher.name>  2009-10-18 10:27:54 PDT ---
(From update of attachment 41382)
> +    var i;
> +    for (i = 0; i < object.length; i++) {

This should be one line as:

    for (var i = 0; i < object.length; ++i) {


> +    }
> +    return elements;

Please put a new line between these two lines.

I would like Pavel to review this to make sure everything is covered.

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