| Index: third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html
|
| index c2588cfea1dc25a234797cf31496d36028c5c635..21f7ac15403ca30ba73fb0bf631216d309763d99 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html
|
| @@ -6,11 +6,11 @@
|
| <script>
|
| function test() {
|
| var suggestions = ["heyoo", "hey it's a suggestion", "hey another suggestion"];
|
| - var prompt = new WebInspector.TextPrompt();
|
| + var prompt = new UI.TextPrompt();
|
| prompt.initialize((element, range, force, callback) => callback(suggestions));
|
| prompt.setSuggestBoxEnabled(true);
|
| var div = document.createElement("div");
|
| - WebInspector.inspectorView.element.appendChild(div);
|
| + UI.inspectorView.element.appendChild(div);
|
| prompt.attachAndStartEditing(div);
|
| prompt.setText("hey");
|
| prompt.complete();
|
|
|