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

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

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 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/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 2600c967cd554b7b1d313eb7733668f582068aaa..f9eef35a6f34d6f35ead88a2a16173d664ca197a 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
@@ -45,12 +45,12 @@ function test()
function step6(next)
{
- WebInspector.JavaScriptAutocomplete.completionsForExpression("var1", "toExp").then(checkAgainstGolden.bind(this, ["toExponential"], [], next));
+ WebInspector.JavaScriptAutocomplete.completionsForExpression("var1.", "toExp").then(checkAgainstGolden.bind(this, ["toExponential"], [], next));
},
function step7(next)
{
- WebInspector.JavaScriptAutocomplete.completionsForExpression("123", "toExp").then(checkAgainstGolden.bind(this, [], ["toExponential"], next));
+ WebInspector.JavaScriptAutocomplete.completionsForExpression("123.", "toExp").then(checkAgainstGolden.bind(this, [], ["toExponential"], next));
},
function step8(next)
@@ -65,7 +65,7 @@ function test()
function step10(next)
{
- WebInspector.JavaScriptAutocomplete.completionsForExpression("console", "log('bar');").then(checkAgainstGolden.bind(this, [], ["$"], next));
+ WebInspector.JavaScriptAutocomplete.completionsForExpression("console.", "log('bar');").then(checkAgainstGolden.bind(this, [], ["$"], next));
},
function step11(next)
@@ -82,6 +82,11 @@ function test()
{
WebInspector.JavaScriptAutocomplete.completionsForExpression("arr2.", "").then(checkAgainstGolden.bind(this, ["length"], ["1", "2", "3"], next));
},
+
+ function step14(next)
+ {
+ WebInspector.JavaScriptAutocomplete.completionsForExpression("document\n","E").then(checkAgainstGolden.bind(this, ["Element"], ["ELEMENT_NODE"], next));
+ }
]);
function checkAgainstGolden(golden, antiGolden, continuation, completions)

Powered by Google App Engine
This is Rietveld 408576698