| Index: third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js b/third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
|
| index bdee9928d384454f83fd78db9f48b3560b2917ad..81ee015a439b7b43e0ec4d97ee0aa95f7f596b70 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
|
| @@ -94,7 +94,7 @@ Sources.StyleSheetOutlineDialog = class extends QuickOpen.FilteredListWidget.Del
|
| renderItem(itemIndex, query, titleElement, subtitleElement) {
|
| var rule = this._rules[itemIndex];
|
| titleElement.textContent = rule.selectorText || rule.atRule;
|
| - this.highlightRanges(titleElement, query);
|
| + QuickOpen.FilteredListWidget.highlightRanges(titleElement, query);
|
| subtitleElement.textContent = ':' + (rule.lineNumber + 1);
|
| }
|
|
|
|
|