| 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()
|
|
|