| Index: third_party/WebKit/LayoutTests/http/tests/inspector/console-cd-completions.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/console-cd-completions.html b/third_party/WebKit/LayoutTests/http/tests/inspector/console-cd-completions.html
|
| index 617372f4c9a405b3e6f5d3fe6f747b6beada7af7..df38926bb21bc4312d8444aff8635a7e48f33d78 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/console-cd-completions.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console-cd-completions.html
|
| @@ -92,7 +92,7 @@ function test()
|
| {
|
| InspectorTest.changeExecutionContext("myIFrame");
|
|
|
| - Components.JavaScriptAutocomplete.completionsForExpression("", "myGlob").then(checkCompletions.bind(this));
|
| + ObjectUI.JavaScriptAutocomplete.completionsForExpression("", "myGlob").then(checkCompletions.bind(this));
|
| function checkCompletions(completions)
|
| {
|
| InspectorTest.addResult("myGlob completions:")
|
| @@ -103,7 +103,7 @@ function test()
|
| function requestIFrameCompletions()
|
| {
|
| InspectorTest.changeExecutionContext("top");
|
| - Components.JavaScriptAutocomplete.completionsForExpression("myIFrame.", "").then(checkIframeCompletions.bind(this));
|
| + ObjectUI.JavaScriptAutocomplete.completionsForExpression("myIFrame.", "").then(checkIframeCompletions.bind(this));
|
| }
|
|
|
| function checkIframeCompletions(completions)
|
| @@ -117,7 +117,7 @@ function test()
|
| function requestProxyCompletions()
|
| {
|
| InspectorTest.changeExecutionContext("top");
|
| - Components.JavaScriptAutocomplete.completionsForExpression("window.proxy2.", "").then(checkProxyCompletions.bind(this));
|
| + ObjectUI.JavaScriptAutocomplete.completionsForExpression("window.proxy2.", "").then(checkProxyCompletions.bind(this));
|
| }
|
|
|
| function checkProxyCompletions(completions)
|
| @@ -137,7 +137,7 @@ function test()
|
| function requestMyClassWithMixinCompletions()
|
| {
|
| InspectorTest.changeExecutionContext("top");
|
| - Components.JavaScriptAutocomplete.completionsForExpression("window.x.", "").then(checkMyClassWithMixinCompletions.bind(this));
|
| + ObjectUI.JavaScriptAutocomplete.completionsForExpression("window.x.", "").then(checkMyClassWithMixinCompletions.bind(this));
|
| }
|
|
|
| function checkMyClassWithMixinCompletions(completions)
|
| @@ -151,7 +151,7 @@ function test()
|
| function requestObjectCompletions()
|
| {
|
| InspectorTest.changeExecutionContext("top");
|
| - Components.JavaScriptAutocomplete.completionsForExpression("Object.", "").then(checkObjectCompletions.bind(this));
|
| + ObjectUI.JavaScriptAutocomplete.completionsForExpression("Object.", "").then(checkObjectCompletions.bind(this));
|
| }
|
|
|
| function checkObjectCompletions(completions)
|
|
|