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 35d9ded9b6e89c57978d37a47662cb96b245ed31..628d1132a9fd9c242f2b67decac22d3068b02c21 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
+++ b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js |
@@ -1108,7 +1108,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; |