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

Side by Side Diff: LayoutTests/inspector/sources/pretty-print-javascript-6-expected.txt

Issue 1312033002: DevTools: fix pretty-print of anonymous functions passed as call parameters (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix stray changes Created 5 years, 4 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 | Annotate | Revision Log
OLDNEW
1 Verifies JavaScript pretty-printing functionality. 1 Verifies JavaScript pretty-printing functionality.
2 2
3 3
4 Running: trailingCommentsTest 4 Running: trailingCommentsTest
5 ====== 8< ------ 5 ====== 8< ------
6 noop(); 6 noop();
7 //#sourceMappingURL=program.js.map 7 //#sourceMappingURL=program.js.map
8 8
9 ------ >8 ====== 9 ------ >8 ======
10 10
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 let name = names[i]; 61 let name = names[i];
62 let person = persons[i]; 62 let person = persons[i];
63 } 63 }
64 64
65 ------ >8 ====== 65 ------ >8 ======
66 Correct mapping for <for> 66 Correct mapping for <for>
67 Correct mapping for <person> 67 Correct mapping for <person>
68 Correct mapping for <name> 68 Correct mapping for <name>
69 Correct mapping for <}> 69 Correct mapping for <}>
70 70
71 Running: anonimousFunctionAsParameter
72 ====== 8< ------
73 setTimeout(function() {
74 alert(1);
75 }, 2000);
76
77 ------ >8 ======
78 Correct mapping for <setTimeout>
79 Correct mapping for <function>
80 Correct mapping for <alert>
81 Correct mapping for <2000>
82
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698