| 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 6d8b6372938ad299cdfab5af244c90f31446786e..ef9cceaea889949284585bd4cbb3957079dc8a62 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");
|
|
|
| - WebInspector.context.flavor(WebInspector.ExecutionContext).completionsForExpression("", "myGlob", 6, "myGlob", false, checkCompletions.bind(this));
|
| + WebInspector.context.flavor(WebInspector.ExecutionContext).completionsForExpression("", "myGlob", false, checkCompletions.bind(this));
|
| function checkCompletions(completions)
|
| {
|
| InspectorTest.addResult("myGlob completions:")
|
| @@ -103,7 +103,7 @@ function test()
|
| function requestIFrameCompletions()
|
| {
|
| InspectorTest.changeExecutionContext("top");
|
| - WebInspector.context.flavor(WebInspector.ExecutionContext).completionsForExpression("myIFrame.", "myIFrame.", 0, "", false, checkIframeCompletions.bind(this));
|
| + WebInspector.context.flavor(WebInspector.ExecutionContext).completionsForExpression("myIFrame.", "", false, checkIframeCompletions.bind(this));
|
| }
|
|
|
| function checkIframeCompletions(completions)
|
| @@ -117,7 +117,7 @@ function test()
|
| function requestProxyCompletions()
|
| {
|
| InspectorTest.changeExecutionContext("top");
|
| - WebInspector.context.flavor(WebInspector.ExecutionContext).completionsForExpression("window.proxy2.", "window.proxy2.", 0, "", false, checkProxyCompletions.bind(this));
|
| + WebInspector.context.flavor(WebInspector.ExecutionContext).completionsForExpression("window.proxy2.", "", false, checkProxyCompletions.bind(this));
|
| }
|
|
|
| function checkProxyCompletions(completions)
|
| @@ -137,7 +137,7 @@ function test()
|
| function requestMyClassWithMixinCompletions()
|
| {
|
| InspectorTest.changeExecutionContext("top");
|
| - WebInspector.context.flavor(WebInspector.ExecutionContext).completionsForExpression("window.x.", "window.x.", 0, "", false, checkMyClassWithMixinCompletions.bind(this));
|
| + WebInspector.context.flavor(WebInspector.ExecutionContext).completionsForExpression("window.x.", "", false, checkMyClassWithMixinCompletions.bind(this));
|
| }
|
|
|
| function checkMyClassWithMixinCompletions(completions)
|
| @@ -151,7 +151,7 @@ function test()
|
| function requestObjectCompletions()
|
| {
|
| InspectorTest.changeExecutionContext("top");
|
| - WebInspector.context.flavor(WebInspector.ExecutionContext).completionsForExpression("Object.", "Object.", 0, "", false, checkObjectCompletions.bind(this));
|
| + WebInspector.context.flavor(WebInspector.ExecutionContext).completionsForExpression("Object.", "", false, checkObjectCompletions.bind(this));
|
| }
|
|
|
| function checkObjectCompletions(completions)
|
|
|