Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(834)

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/CSSStyleDeclaration.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698