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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6.html

Issue 1614563002: DevTools: [PrettyPrint] support arrow function (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6.html b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6.html
index 29237ce7642c0d7b91293edfca8a2ff31f63bc3c..2d0bc5f3b9004a3350ecd3348bcd118c83362dad 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6.html
@@ -46,6 +46,12 @@ function test()
{
var mappingQueries = ["setTimeout", "function", "alert", "2000"];
testJSFormatter("setTimeout(function(){alert(1);},2000);", mappingQueries, next);
+ },
+
+ function arrowFunction(next)
+ {
+ var mappingQueries = ["function", "console", "=>", "2"];
+ testJSFormatter("function test(arg){console.log(arg);}test(a=>a+2);", mappingQueries, next);
}
]);
}
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698