| Index: third_party/WebKit/Source/devtools/front_end/sdk/CSSStyleDeclaration.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/CSSStyleDeclaration.js b/third_party/WebKit/Source/devtools/front_end/sdk/CSSStyleDeclaration.js
|
| index adf4e881fa4f2e8374ca3ea6f27ff7119b96fbab..3d540ce3f5742dc5c98fef44dfb160e43282852a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/CSSStyleDeclaration.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/CSSStyleDeclaration.js
|
| @@ -15,14 +15,14 @@ WebInspector.CSSStyleDeclaration = function(cssModel, parentRule, payload, type)
|
| this.parentRule = parentRule;
|
| this._reinitialize(payload);
|
| this.type = type;
|
| -}
|
| +};
|
|
|
| /** @enum {string} */
|
| WebInspector.CSSStyleDeclaration.Type = {
|
| Regular: "Regular",
|
| Inline: "Inline",
|
| Attributes: "Attributes"
|
| -}
|
| +};
|
|
|
| WebInspector.CSSStyleDeclaration.prototype = {
|
| /**
|
| @@ -286,7 +286,7 @@ WebInspector.CSSStyleDeclaration.prototype = {
|
| */
|
| setText: function(text, majorChange)
|
| {
|
| - return this._cssModel.setStyleText(this.styleSheetId, this.range, text, majorChange)
|
| + return this._cssModel.setStyleText(this.styleSheetId, this.range, text, majorChange);
|
| },
|
|
|
| /**
|
| @@ -310,4 +310,4 @@ WebInspector.CSSStyleDeclaration.prototype = {
|
| {
|
| this.insertPropertyAt(this.allProperties.length, name, value, userCallback);
|
| }
|
| -}
|
| +};
|
|
|