| Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptOutlineDialog.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptOutlineDialog.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptOutlineDialog.js
|
| index f9283d21c94310def7c0715d54e6be845f1bc528..c42734daa5f651acde756a039e4c336b9956173b 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptOutlineDialog.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptOutlineDialog.js
|
| @@ -81,7 +81,7 @@ Sources.JavaScriptOutlineDialog = class extends QuickOpen.FilteredListWidget.Del
|
| renderItem(itemIndex, query, titleElement, subtitleElement) {
|
| var item = this._functionItems[itemIndex];
|
| titleElement.textContent = item.name + (item.arguments ? item.arguments : '');
|
| - this.highlightRanges(titleElement, query);
|
| + QuickOpen.FilteredListWidget.highlightRanges(titleElement, query);
|
| subtitleElement.textContent = ':' + (item.line + 1);
|
| }
|
|
|
|
|