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

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

Issue 2770123002: DevTools: produce javascript outline for javascript classess (Closed)
Patch Set: address comments 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-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
index 22a5e664122d1630244531d5fd87311e532501c2..d2d032307f44f68cdcbb265a3e74344c99edcf94 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-1-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-1-expected.txt
@@ -17,18 +17,18 @@ Running: testVariableDeclaration
Text:
var a = function(a,b) { }
Outline:
- a(a, b):0:8
+ a(a, b):0:4
Running: testMultipleVariableDeclaration
Text:
var a = function(a,b) { }, b = function(c,d) { }
Outline:
- a(a, b):0:8
- b(c, d):0:31
+ a(a, b):0:4
+ b(c, d):0:27
Running: testObjectProperty
Text:
a.b.c = function(d, e) { }
Outline:
- c(d, e):0:8
+ c(d, e):0:0

Powered by Google App Engine
This is Rietveld 408576698