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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-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 side-by-side diff with in-line comments
Download patch
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
+

Powered by Google App Engine
This is Rietveld 408576698