| Index: third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleModel.js b/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleModel.js
|
| index e702b30fa0099e42351e5b94d3fb1afe3f6cc922..cfa0ac4225f27cdf4fe1a523e87d3b32efc5b3f1 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/ComputedStyleModel.js
|
| @@ -11,12 +11,12 @@ WebInspector.ComputedStyleModel = function()
|
| WebInspector.Object.call(this);
|
| this._node = WebInspector.context.flavor(WebInspector.DOMNode);
|
| WebInspector.context.addFlavorChangeListener(WebInspector.DOMNode, this._onNodeChanged, this);
|
| -}
|
| +};
|
|
|
| /** @enum {symbol} */
|
| WebInspector.ComputedStyleModel.Events = {
|
| ComputedStyleChanged: Symbol("ComputedStyleChanged")
|
| -}
|
| +};
|
|
|
| WebInspector.ComputedStyleModel.prototype = {
|
| /**
|
| @@ -156,7 +156,7 @@ WebInspector.ComputedStyleModel.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Object.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -167,4 +167,4 @@ WebInspector.ComputedStyleModel.ComputedStyle = function(node, computedStyle)
|
| {
|
| this.node = node;
|
| this.computedStyle = computedStyle;
|
| -}
|
| +};
|
|
|