Index: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-1-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-1-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-1-expected.txt |
new file mode 100644 |
index 0000000000000000000000000000000000000000..22a5e664122d1630244531d5fd87311e532501c2 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-1-expected.txt |
@@ -0,0 +1,34 @@ |
+Verify javascript outline |
+ |
+ |
+Running: testSimpleFunction |
+Text: |
+ function foo(a, b, c) {} |
+Outline: |
+ foo(a, b, c):0:9 |
+ |
+Running: testSpreadOperator |
+Text: |
+ function foo(a, b, ...c) {} |
+Outline: |
+ foo(a, b, ...c):0:9 |
+ |
+Running: testVariableDeclaration |
+Text: |
+ var a = function(a,b) { } |
+Outline: |
+ a(a, b):0:8 |
+ |
+Running: testMultipleVariableDeclaration |
+Text: |
+ var a = function(a,b) { }, b = function(c,d) { } |
+Outline: |
+ a(a, b):0:8 |
+ b(c, d):0:31 |
+ |
+Running: testObjectProperty |
+Text: |
+ a.b.c = function(d, e) { } |
+Outline: |
+ c(d, e):0:8 |
+ |