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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-retain-autocomplete-on-typing.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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
Index: third_party/WebKit/LayoutTests/inspector/console/console-retain-autocomplete-on-typing.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-retain-autocomplete-on-typing.html b/third_party/WebKit/LayoutTests/inspector/console/console-retain-autocomplete-on-typing.html
index 20dcadaec741c1f632fc7f0d3b25b3e046d6c925..02cad42879cbe00f7c764b4d0520fa07bd638595 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-retain-autocomplete-on-typing.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-retain-autocomplete-on-typing.html
@@ -21,7 +21,7 @@ function test()
var testSuite = [
function testSummonSuggestBox(next)
{
- InspectorTest.addSniffer(WebInspector.TextEditorAutocompleteController.prototype, "_onSuggestionsShownForTest", onSuggestionsShown);
+ InspectorTest.addSniffer(TextEditor.TextEditorAutocompleteController.prototype, "_onSuggestionsShownForTest", onSuggestionsShown);
InspectorTest.typeIn(consoleEditor, "f");
function onSuggestionsShown()
@@ -33,8 +33,8 @@ function test()
function testTypeText(next)
{
- InspectorTest.addSniffer(WebInspector.TextEditorAutocompleteController.prototype, "_onSuggestionsHiddenForTest", onSuggestionsHidden);
- InspectorTest.addSniffer(WebInspector.TextEditorAutocompleteController.prototype, "_onCursorActivityHandledForTest", onCursorActivityHandled);
+ InspectorTest.addSniffer(TextEditor.TextEditorAutocompleteController.prototype, "_onSuggestionsHiddenForTest", onSuggestionsHidden);
+ InspectorTest.addSniffer(TextEditor.TextEditorAutocompleteController.prototype, "_onCursorActivityHandledForTest", onCursorActivityHandled);
InspectorTest.typeIn(consoleEditor, "o");
function onSuggestionsHidden()

Powered by Google App Engine
This is Rietveld 408576698