Index: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-expected.txt |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b9f8333c8693d6ba5a410c4200817d2b63d9d886 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-expected.txt |
@@ -0,0 +1,35 @@ |
+Verify javascript outline |
+ |
+ |
+Running: testNamedFunctionVariableAssignment |
+Text: |
+ var a = function foo(...bar) { } |
+Outline: |
+ foo(...bar):0:17 |
+ |
+Running: testArrowFunction |
+Text: |
+ var a = x => x + 2 |
+Outline: |
+ |
+Running: testArrowFunctionWithMultipleArguments |
+Text: |
+ var a = (x, y) => x + y |
+Outline: |
+ |
+Running: testInnerFunctions |
+Text: |
+ function foo(){ function bar() {} function baz() { }} |
+Outline: |
+ foo():0:9 |
+ bar():0:25 |
+ baz():0:43 |
+ |
+Running: testObjectProperties |
+Text: |
+ x = { run: function() { }, get count() { }, set count(value) { }} |
+Outline: |
+ run():0:11 |
+ get count():0:31 |
+ set count(value):0:48 |
+ |