| Index: third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| index cc777844aa6eea28d5746826c7cdbeeec402a6c3..adf4badc9b839f23496b8cd4389d844dda188b3f 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| @@ -423,7 +423,7 @@ WebInspector.ConsoleViewMessage.prototype = {
|
| var note = titleElement.createChild("span", "object-state-note");
|
| note.classList.add("info-note");
|
| note.title = WebInspector.UIString("Object value at left was snapshotted when logged, value below was evaluated just now.");
|
| - var section = new WebInspector.ObjectPropertiesSection(obj, titleElement);
|
| + var section = new WebInspector.ObjectPropertiesSection(obj, titleElement, this._linkifier);
|
| section.enableContextMenu();
|
| elem.appendChild(section.element);
|
| section.element.classList.add("console-view-object-properties-section");
|
|
|