Changeset 49298 in webkit


Ignore:
Timestamp:
Oct 8, 2009 7:09:41 AM (15 years ago)
Author:
Joseph Pecoraro
Message:

2009-10-08 Joseph Pecoraro <Joseph Pecoraro>

Reviewed by Timothy Hatcher.

Inspector: NodeLists Don't Display Well in the Console
https://bugs.webkit.org/show_bug.cgi?id=28061

  • inspector/front-end/InjectedScript.js: (Object.type):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r49296 r49298  
     12009-10-08  Joseph Pecoraro  <joepeck@webkit.org>
     2
     3        Reviewed by Timothy Hatcher.
     4
     5        Inspector: NodeLists Don't Display Well in the Console
     6        https://bugs.webkit.org/show_bug.cgi?id=28061
     7
     8        * inspector/front-end/InjectedScript.js:
     9        (Object.type):
     10
    1112009-10-08  Girish Ramakrishnan  <girish@forwardbias.in>
    212
  • trunk/WebCore/inspector/front-end/InjectedScript.js

    r49234 r49298  
    11091109    if (obj instanceof win.RegExp)
    11101110        return "regexp";
     1111    if (obj instanceof win.NodeList)
     1112        return "array";
    11111113    if (obj instanceof win.Error)
    11121114        return "error";
Note: See TracChangeset for help on using the changeset viewer.