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

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

Issue 2560963002: [Devtools] Upgrade acorn services to use ECMAScript7 (Closed)
Patch Set: Created 4 years 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/pretty-print-javascript-7.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-7.html b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-7.html
index 79064ef74cd614bf95f63a72d323461d5c5aed62..138907fef6adcfdb1db0af4dd470ffce3f69fb58 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-7.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-7.html
@@ -46,6 +46,12 @@ function test()
var mappingQueries = ["a", "b"];
testJSFormatter("a();\n\n\n\n\n\n\n\n\nb();", mappingQueries, next);
},
+
+ function ensureExponentialOperator(next)
+ {
+ var mappingQueries = ["2", "**", "3"];
+ testJSFormatter("2**3", mappingQueries, next);
+ },
]);
}

Powered by Google App Engine
This is Rietveld 408576698