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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/autocomplete-hide-on-smart-brace.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/sources/autocomplete-hide-on-smart-brace.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/autocomplete-hide-on-smart-brace.html b/third_party/WebKit/LayoutTests/inspector/sources/autocomplete-hide-on-smart-brace.html
index 99069a7a23a3160925b216ca78a9204028b94da2..e038fe338d1efc2903f2ec7efdde0539ad8ba082 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/autocomplete-hide-on-smart-brace.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/autocomplete-hide-on-smart-brace.html
@@ -21,10 +21,10 @@ function test()
var testSuite = [
function testSummonSuggestBox(next)
{
- InspectorTest.addSniffer(WebInspector.TextEditorAutocompleteController.prototype, "_onSuggestionsShownForTest", onSuggestionsShown);
+ InspectorTest.addSniffer(TextEditor.TextEditorAutocompleteController.prototype, "_onSuggestionsShownForTest", onSuggestionsShown);
textEditor.setText("one\n()");
- textEditor.setSelection(WebInspector.TextRange.createFromLocation(1,1));
+ textEditor.setSelection(Common.TextRange.createFromLocation(1,1));
InspectorTest.typeIn(textEditor, "o", function() { });
function onSuggestionsShown()
@@ -36,7 +36,7 @@ function test()
function testTypeSmartBrace(next)
{
- InspectorTest.addSniffer(WebInspector.TextEditorAutocompleteController.prototype, "_onSuggestionsHiddenForTest", onSuggestionsHidden);
+ InspectorTest.addSniffer(TextEditor.TextEditorAutocompleteController.prototype, "_onSuggestionsHiddenForTest", onSuggestionsHidden);
InspectorTest.typeIn(textEditor, ")", function() { });
function onSuggestionsHidden()

Powered by Google App Engine
This is Rietveld 408576698