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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.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/ui/CSSShadowEditor.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js b/third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js
index 2cbbb0f63a51ae777e26bc734244bf0394b743fb..7af4b550dd90652003ef80741a15de178612fbf7 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js
@@ -42,12 +42,12 @@ WebInspector.CSSShadowEditor = function()
this._spreadField = this.contentElement.createChild("div", "shadow-editor-field");
this._spreadInput = this._createTextInput(this._spreadField, WebInspector.UIString("Spread"));
this._spreadSlider = this._createSlider(this._spreadField);
-}
+};
/** @enum {symbol} */
WebInspector.CSSShadowEditor.Events = {
ShadowChanged: Symbol("ShadowChanged")
-}
+};
/** @type {number} */
WebInspector.CSSShadowEditor.maxRange = 20;
@@ -165,7 +165,7 @@ WebInspector.CSSShadowEditor.prototype = {
context.arc(thumbPoint.x, thumbPoint.y, WebInspector.CSSShadowEditor.sliderThumbRadius + 2, 0, 2 * Math.PI);
context.fill();
}
- context.beginPath()
+ context.beginPath();
context.fillStyle = "#4285F4";
context.arc(thumbPoint.x, thumbPoint.y, WebInspector.CSSShadowEditor.sliderThumbRadius, 0, 2 * Math.PI);
context.fill();
@@ -439,4 +439,4 @@ WebInspector.CSSShadowEditor.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698