Title: [194152] trunk/Source/WebInspectorUI
Revision
194152
Author
[email protected]
Date
2015-12-16 09:46:02 -0800 (Wed, 16 Dec 2015)

Log Message

REGRESSION: Web Inspector: console.dir(...) should force allowing object expansion
https://bugs.webkit.org/show_bug.cgi?id=152328

Patch by Joseph Pecoraro <[email protected]> on 2015-12-16
Reviewed by Timothy Hatcher.

* UserInterface/Views/ConsoleMessageView.js:
(WebInspector.ConsoleMessageView.prototype._formatParameter):
Propogate the force parameter down.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (194151 => 194152)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-12-16 17:44:10 UTC (rev 194151)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-12-16 17:46:02 UTC (rev 194152)
@@ -1,5 +1,16 @@
 2015-12-16  Joseph Pecoraro  <[email protected]>
 
+        REGRESSION: Web Inspector: console.dir(...) should force allowing object expansion
+        https://bugs.webkit.org/show_bug.cgi?id=152328
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/ConsoleMessageView.js:
+        (WebInspector.ConsoleMessageView.prototype._formatParameter):
+        Propogate the force parameter down.
+
+2015-12-16  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Improve copy of console messages with multiple arguments - console.log(obj1, obj2)
         https://bugs.webkit.org/show_bug.cgi?id=152330
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleMessageView.js (194151 => 194152)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleMessageView.js	2015-12-16 17:44:10 UTC (rev 194151)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleMessageView.js	2015-12-16 17:46:02 UTC (rev 194152)
@@ -524,7 +524,7 @@
         var formatter = formatters[type] || this._formatParameterAsValue;
 
         const fragment = document.createDocumentFragment();
-        formatter.call(this, parameter, fragment);
+        formatter.call(this, parameter, fragment, forceObjectFormat);
         return fragment;
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to