| Index: third_party/WebKit/Source/devtools/front_end/sdk/CSSParser.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/CSSParser.js b/third_party/WebKit/Source/devtools/front_end/sdk/CSSParser.js
|
| index 1c68c7ca697acc576b3cb8486a2ea8ced45f0da5..da7a3627c1e83697c4cd2ff86c9b69cabbee0b08 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/CSSParser.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/CSSParser.js
|
| @@ -12,12 +12,12 @@ WebInspector.CSSParser = function()
|
| {
|
| this._rules = [];
|
| this._terminated = false;
|
| -}
|
| +};
|
|
|
| /** @enum {symbol} */
|
| WebInspector.CSSParser.Events = {
|
| RulesParsed: Symbol("RulesParsed")
|
| -}
|
| +};
|
|
|
| WebInspector.CSSParser.prototype = {
|
| /**
|
| @@ -138,7 +138,7 @@ WebInspector.CSSParser.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Object.prototype,
|
| -}
|
| +};
|
|
|
| /**
|
| * @typedef {{isLastChunk: boolean, chunk: !Array.<!WebInspector.CSSParser.Rule>}}
|
| @@ -160,7 +160,7 @@ WebInspector.CSSParser.StyleRule = function()
|
| this.columnNumber;
|
| /** @type {!Array.<!WebInspector.CSSParser.Property>} */
|
| this.properties;
|
| -}
|
| +};
|
|
|
| /**
|
| * @typedef {{atRule: string, lineNumber: number, columnNumber: number}}
|
| @@ -194,4 +194,4 @@ WebInspector.CSSParser.Property = function()
|
| this.range;
|
| /** @type {(boolean|undefined)} */
|
| this.disabled;
|
| -}
|
| +};
|
|
|