| Index: third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
|
| index f7b2ad8ba71acc6d858082f843e77345636f2602..d1b17f32b8c43c011928c7c6891aea853bb04ea6 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
|
| @@ -367,7 +367,7 @@ WebInspector.WatchExpression.prototype = {
|
| var titleElement = headerElement.createChild("div", "watch-expression-title");
|
| this._nameElement = WebInspector.ObjectPropertiesSection.createNameElement(this._expression);
|
| if (!!exceptionDetails || !result) {
|
| - this._valueElement = createElementWithClass("span", "error-message value");
|
| + this._valueElement = createElementWithClass("span", "watch-expression-error value");
|
| titleElement.classList.add("dimmed");
|
| this._valueElement.textContent = WebInspector.UIString("<not available>");
|
| } else {
|
|
|