Index: third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js |
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js |
index a8dcea9366c35c0992dee23a9104e068d32f217b..51279f2a8c4faf99bdd8ffb4f7bdcc39d4347719 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js |
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/filtered-item-selection-dialog-filtering.js |
@@ -1,4 +1,4 @@ |
-TestRunner.loadLazyModules(["ui_lazy"]).then(test); |
+TestRunner.loadLazyModules(["quick_open"]).then(test); |
function test() { |
TestRunner.addResult("Check to see that FilteredItemSelectionDialog uses proper regex to filter results."); |
@@ -6,7 +6,7 @@ function test() { |
var overrideShowMatchingItems = true; |
var history = []; |
- var StubDelegate = class extends UI.FilteredListWidget.Delegate { |
+ var StubDelegate = class extends QuickOpen.FilteredListWidget.Delegate { |
constructor() |
{ |
super(history); |
@@ -31,7 +31,7 @@ function test() { |
TestRunner.addResult("Input:" + JSON.stringify(input)); |
- var filteredSelectionDialog = new UI.FilteredListWidget(delegate); |
+ var filteredSelectionDialog = new QuickOpen.FilteredListWidget(delegate); |
filteredSelectionDialog.showAsDialog(); |
var promise = TestRunner.addSniffer(filteredSelectionDialog, "_itemsFilteredForTest").then(accept); |
filteredSelectionDialog.setQuery(query); |