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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-1-expected.txt

Issue 2771623003: DevTools: add tests to fixate javascript outline behavior (Closed)
Patch Set: Created 3 years, 9 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
(Empty)
1 Verify javascript outline
2
3
4 Running: testSimpleFunction
5 Text:
6 function foo(a, b, c) {}
7 Outline:
8 foo(a, b, c):0:9
9
10 Running: testSpreadOperator
11 Text:
12 function foo(a, b, ...c) {}
13 Outline:
14 foo(a, b, ...c):0:9
15
16 Running: testVariableDeclaration
17 Text:
18 var a = function(a,b) { }
19 Outline:
20 a(a, b):0:8
21
22 Running: testMultipleVariableDeclaration
23 Text:
24 var a = function(a,b) { }, b = function(c,d) { }
25 Outline:
26 a(a, b):0:8
27 b(c, d):0:31
28
29 Running: testObjectProperty
30 Text:
31 a.b.c = function(d, e) { }
32 Outline:
33 c(d, e):0:8
34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698