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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-completions-on-call-frame.html

Issue 2181123002: DevTools: Remove unused parameters to TextPrompt._loadCompletions callback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove toLowerCase() Created 4 years, 5 months 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/debugger/debugger-completions-on-call-frame.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-completions-on-call-frame.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-completions-on-call-frame.html
index 225e979a945450f9066d4292feff25af308e8b0f..2ea9111c75152a25f18d165075ed20e3f6054367 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-completions-on-call-frame.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-completions-on-call-frame.html
@@ -1,3 +1,4 @@
+
<html>
<head>
<script src="../../../http/tests/inspector/inspector-test.js"></script>
@@ -25,62 +26,62 @@ function test()
function step2(next)
{
- executionContext.completionsForExpression("", "var", 3, "var", false, checkAgainstGolden.bind(this, ["var1", "var2"], [], next));
+ executionContext.completionsForExpression("", "var", false, checkAgainstGolden.bind(this, ["var1", "var2"], [], next));
},
function step3(next)
{
- executionContext.completionsForExpression("", "di", 2, "di", false, checkAgainstGolden.bind(this, ["dir", "dirxml"], [], next));
+ executionContext.completionsForExpression("", "di", false, checkAgainstGolden.bind(this, ["dir", "dirxml"], [], next));
},
function step4(next)
{
- executionContext.completionsForExpression("", "win", 3, "win", false, checkAgainstGolden.bind(this, ["window"], [], next));
+ executionContext.completionsForExpression("", "win", false, checkAgainstGolden.bind(this, ["window"], [], next));
},
function step5(next)
{
- executionContext.completionsForExpression("", "t", 1, "t", false, checkAgainstGolden.bind(this, ["this"], [], next));
+ executionContext.completionsForExpression("", "t", false, checkAgainstGolden.bind(this, ["this"], [], next));
},
function step6(next)
{
- executionContext.completionsForExpression("var1", "var1.toExp", 10, "toExp", false, checkAgainstGolden.bind(this, ["toExponential"], [], next));
+ executionContext.completionsForExpression("var1", "toExp", false, checkAgainstGolden.bind(this, ["toExponential"], [], next));
},
function step7(next)
{
- executionContext.completionsForExpression("123", "123.toExp", 9, "toExp", false, checkAgainstGolden.bind(this, [], ["toExponential"], next));
+ executionContext.completionsForExpression("123", "toExp", false, checkAgainstGolden.bind(this, [], ["toExponential"], next));
},
function step8(next)
{
- executionContext.completionsForExpression("", "", 0, "", false, checkAgainstGolden.bind(this, [], ["$"], next));
+ executionContext.completionsForExpression("", "", false, checkAgainstGolden.bind(this, [], ["$"], next));
},
function step9(next)
{
- executionContext.completionsForExpression("", "", 0, "", true, checkAgainstGolden.bind(this, ["$", "window"], [], next));
+ executionContext.completionsForExpression("", "", true, checkAgainstGolden.bind(this, ["$", "window"], [], next));
},
function step10(next)
{
- executionContext.completionsForExpression("console", "console.log('bar');", 19, "log('bar');", false, checkAgainstGolden.bind(this, [], ["$"], next));
+ executionContext.completionsForExpression("console", "log('bar');", false, checkAgainstGolden.bind(this, [], ["$"], next));
},
function step11(next)
{
- executionContext.completionsForExpression("arr1.", "arr1.", 5, "", false, checkAgainstGolden.bind(this, ["length"], ["1", "2", "3"], next));
+ executionContext.completionsForExpression("arr1.", "", false, checkAgainstGolden.bind(this, ["length"], ["1", "2", "3"], next));
},
function step12(next)
{
- executionContext.completionsForExpression("arr1[", "arr1[", 5, "", false, checkAgainstGolden.bind(this, ["\"length\"]"], ["3]"], next));
+ executionContext.completionsForExpression("arr1[", "", false, checkAgainstGolden.bind(this, ["\"length\"]"], ["3]"], next));
},
function step13_ShouldNotCrash(next)
{
- executionContext.completionsForExpression("arr2.", "arr2.", 5, "", false, checkAgainstGolden.bind(this, ["length"], ["1", "2", "3"], next));
+ executionContext.completionsForExpression("arr2.", "", false, checkAgainstGolden.bind(this, ["length"], ["1", "2", "3"], next));
},
]);

Powered by Google App Engine
This is Rietveld 408576698