Index: third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
index 77571efd34840713a53eec7ba77249e7eaa32403..39006b1732be49ba6b346c99206d516b13f0c046 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
+++ b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
@@ -1111,7 +1111,7 @@ Elements.StylePropertiesSection = class { |
var selectorTexts = rule.selectors.map(selector => selector.text); |
var matchingSelectorIndexes = this._matchedStyles.matchingSelectors(/** @type {!SDK.CSSStyleRule} */ (rule)); |
- var matchingSelectors = new Array(selectorTexts.length).fill(false); |
+ var matchingSelectors = /** @type {!Array<boolean>} */ (new Array(selectorTexts.length).fill(false)); |
for (var matchingIndex of matchingSelectorIndexes) |
matchingSelectors[matchingIndex] = true; |