| 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
|
| -}
|
| +};
|
|
|