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

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

Issue 2184193003: DevTools: fix formatting of continue statement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/pretty-print-javascript-7-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-7-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-7-expected.txt
index 761105b57b7100a429325253b4aa539780de4d4c..841f2e520e58ae74a9d0e0d76def58039ae45a44 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-7-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-7-expected.txt
@@ -44,3 +44,19 @@ Correct mapping for <1000>
Correct mapping for <belay>
Correct mapping for <activeElement>
+Running: continueStatementFormatting
+====== 8< ------
+function foo() {
+ while (1) {
+ if (a)
+ continue;
+ test();
+ }
+}
+
+------ >8 ======
+Correct mapping for <function>
+Correct mapping for <1>
+Correct mapping for <continue>
+Correct mapping for <test>
+

Powered by Google App Engine
This is Rietveld 408576698