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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-3-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-3-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-3-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-3-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c6994fded61a8a7e9d4804c58ac7d9be3d9cd570
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-3-expected.txt
@@ -0,0 +1,28 @@
+Verify javascript outline
+
+
+Running: testClassConstructor
+Text:
+ class Test { constructor(foo, bar) { }}
+Outline:
+
+Running: testClassMethods
+Text:
+ class Test { foo() {} bar() { }}
+Outline:
+
+Running: testAnonymousClass
+Text:
+ var test = class { constructor(foo, bar) { }}
+Outline:
+
+Running: testClassExtends
+Text:
+ var A = class extends B { foo() { }}
+Outline:
+
+Running: testStaticMethod
+Text:
+ class Test { static foo() { }}
+Outline:
+

Powered by Google App Engine
This is Rietveld 408576698