Changeset 180373 in webkit


Ignore:
Timestamp:
Feb 19, 2015 5:10:31 PM (9 years ago)
Author:
Joseph Pecoraro
Message:

Follow-up fix to r180371. formatParameterAsValue expects full object, not just a description.

Reviewed by Timothy Hatcher.

  • UserInterface/Views/ConsoleMessageImpl.js:

(WebInspector.ConsoleMessageImpl.prototype._formatParameter):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r180371 r180373  
     12015-02-19  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Follow-up fix to r180371. formatParameterAsValue expects full object, not just a description.
     4
     5        Reviewed by Timothy Hatcher.
     6
     7        * UserInterface/Views/ConsoleMessageImpl.js:
     8        (WebInspector.ConsoleMessageImpl.prototype._formatParameter):
     9
    1102015-02-19  Joseph Pecoraro  <pecoraro@apple.com>
    211
  • trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleMessageImpl.js

    r180371 r180373  
    278278
    279279        var formatter = this._customFormatters[type];
    280         if (!formatter) {
     280        if (!formatter)
    281281            formatter = this._formatParameterAsValue;
    282             output = output.description;
    283         }
    284282
    285283        var span = document.createElement("span");
Note: See TracChangeset for help on using the changeset viewer.