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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-format-expected.txt

Issue 2369243004: [DevTools] Improved function preview everywhere (Closed)
Patch Set: addressed comments Created 4 years, 3 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/console/console-format-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-format-expected.txt b/third_party/WebKit/LayoutTests/inspector/console/console-format-expected.txt
index a1159cb452c63ff558e1c49436a1b5ed22b84032..12e3196a5062810b176833705f677d3ed6af8b09 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-format-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-format-expected.txt
@@ -145,16 +145,16 @@ console-format.html:7
console-format.html:8 [p#p]
globals[7]
<p id="p">Tests that console logging dumps proper messages.</p>
-console-format.html:7 () { return 1; }
+console-format.html:7 function () { return 1; }
console-format.html:8 [function]
globals[8]
-() { return 1; }
-console-format.html:7 () {
+function () { return 1; }
+console-format.html:7 function () {
return 2;
}
console-format.html:8 [function]
globals[9]
-() {
+function () {
return 2;
}
console-format.html:7 0.12
@@ -237,19 +237,19 @@ console-format.html:7 Object {}
console-format.html:8 [Object]
globals[28]
Object {}
-console-format.html:7 Object() { [native code] }
+console-format.html:7 function Object() { [native code] }
console-format.html:8 [function]
globals[29]
-Object() { [native code] }
+function Object() { [native code] }
console-format.html:7 Object {}
console-format.html:8 [Object]
globals[30]
Object {}
-console-format.html:7 ( /**/ foo/**/, /*/**/bar,
+console-format.html:7 function ( /**/ foo/**/, /*/**/bar,
/**/baz) {}
console-format.html:8 [function]
globals[31]
-( /**/ foo/**/, /*/**/bar,
+function ( /**/ foo/**/, /*/**/bar,
/**/baz) {}
console-format.html:7 Number {[[PrimitiveValue]]: 42}
console-format.html:8 [Number]
@@ -368,14 +368,14 @@ console-format.html:8 Array[1]
__proto__: Array[0]
globals[7]
<p id="p">Tests that console logging dumps proper messages.</p>
-console-format.html:7 () { return 1; }
+console-format.html:7 function () { return 1; }
console-format.html:8 Array[1]
0: ()
length: 1
__proto__: Array[0]
globals[8]
-() { return 1; }
-console-format.html:7 () {
+function () { return 1; }
+console-format.html:7 function () {
return 2;
}
console-format.html:8 Array[1]
@@ -383,7 +383,7 @@ console-format.html:8 Array[1]
length: 1
__proto__: Array[0]
globals[9]
-() {
+function () {
return 2;
}
console-format.html:7 0.12
@@ -565,13 +565,13 @@ console-format.html:8 Array[1]
globals[28]
Object
No Properties
-console-format.html:7 Object() { [native code] }
+console-format.html:7 function Object() { [native code] }
console-format.html:8 Array[1]
0: Object()
length: 1
__proto__: Array[0]
globals[29]
-Object() { [native code] }
+function Object() { [native code] }
console-format.html:7 Object
__defineGetter__: __defineGetter__()
__defineSetter__: __defineSetter__()
@@ -605,14 +605,14 @@ Object
valueOf: valueOf()
get __proto__: __proto__()
set __proto__: __proto__()
-console-format.html:7 ( /**/ foo/**/, /*/**/bar,
+console-format.html:7 function ( /**/ foo/**/, /*/**/bar,
/**/baz) {}
console-format.html:8 Array[1]
0: ( /**/ foo/**/, /*/**/bar, /**/baz)
length: 1
__proto__: Array[0]
globals[31]
-( /**/ foo/**/, /*/**/bar,
+function ( /**/ foo/**/, /*/**/bar,
/**/baz) {}
console-format.html:7 Number
__proto__: Number

Powered by Google App Engine
This is Rietveld 408576698