| 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 c4c5aea90db9c7cb8a8bd3cb1c525277f428f532..9cd71c1a252d0acf5710f73d4fa85554de604e64 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| @@ -538,6 +538,10 @@ Console.ConsoleViewMessage = class {
|
| titleElement.createTextChild(obj.description || '');
|
| }
|
|
|
| + var note = titleElement.createChild('span', 'object-state-note');
|
| + note.classList.add('info-note');
|
| + note.title = Common.UIString('Value below was evaluated just now.');
|
| +
|
| var section = new Components.ObjectPropertiesSection(obj, titleElement, this._linkifier);
|
| section.element.classList.add('console-view-object-properties-section');
|
| section.enableContextMenu();
|
|
|