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

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

Issue 2300073003: DevTools: Fix pretty print inconsistent spacing (Closed)
Patch Set: Test added Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 Verifies JavaScript pretty-printing functionality. 1 Verifies JavaScript pretty-printing functionality.
2 2
3 3
4 Running: semicolonAfterFunctionExpression 4 Running: semicolonAfterFunctionExpression
5 ====== 8< ------ 5 ====== 8< ------
6 var onClick = function() { 6 var onClick = function() {
7 console.log('click!'); 7 console.log('click!');
8 }; 8 };
9 console.log('done'); 9 console.log('done');
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 test(); 53 test();
54 } 54 }
55 } 55 }
56 56
57 ------ >8 ====== 57 ------ >8 ======
58 Correct mapping for <function> 58 Correct mapping for <function>
59 Correct mapping for <1> 59 Correct mapping for <1>
60 Correct mapping for <continue> 60 Correct mapping for <continue>
61 Correct mapping for <test> 61 Correct mapping for <test>
62 62
63 Running: inconsistentSpaceAfterNull
64 ====== 8< ------
65 1 || null;
66
67 ------ >8 ======
68 Correct mapping for <||>
69 Correct mapping for <null>
70 Correct mapping for <;>
71
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698