Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(615)

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js

Issue 2627783002: DevTools: Remove caseSensitive from FilteredListWidget.Delegate (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/JavaScriptOutlineDialog.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/JavaScriptOutlineDialog.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698