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

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

Issue 2866363003: DevTools: format keys in object previews using sans serif. (Closed)
Patch Set: removed the test Created 3 years, 7 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-functions-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-functions-expected.txt b/third_party/WebKit/LayoutTests/inspector/console/console-functions-expected.txt
index b94f7e888d006c1009f8785ac5c5a616b3cb8a69..49518e21c0bbffd4009fe282fb2a1d744fbb2d29 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-functions-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-functions-expected.txt
@@ -22,18 +22,18 @@ CONSOLE MESSAGE: line 28: [object Object]
CONSOLE MESSAGE: line 29: [object Object]
Tests that console logging different types of functions correctly.
-console-functions.html:24 function simple() {}
-console-functions.html:25 function simple()
+console-functions.html:24 ƒ simple() {}
+console-functions.html:25 ƒ simple()
arguments: null
caller: null
length: 0
name: "simple"
prototype: Object
- __proto__: function ()
+ __proto__: ƒ ()
[[FunctionLocation]]: console-functions.html:10
[[Scopes]]: Scopes[1]
-console-functions.html:24 async function asyncSimple() {}
-console-functions.html:25 async function asyncSimple()
+console-functions.html:24 async ƒ asyncSimple() {}
+console-functions.html:25 async ƒ asyncSimple()
arguments: (...)
caller: (...)
length: 0
@@ -41,8 +41,8 @@ console-functions.html:25 async function asyncSimple()
__proto__: AsyncFunction
[[FunctionLocation]]: console-functions.html:11
[[Scopes]]: Scopes[1]
-console-functions.html:24 function* genSimple() {}
-console-functions.html:25 function* genSimple()
+console-functions.html:24 ƒ* genSimple() {}
+console-functions.html:25 ƒ* genSimple()
arguments: (...)
caller: (...)
length: 0
@@ -52,58 +52,58 @@ console-functions.html:25 function* genSimple()
[[FunctionLocation]]: console-functions.html:12
[[IsGenerator]]: true
[[Scopes]]: Scopes[1]
-console-functions.html:24 function (){}
-console-functions.html:25 function anonymous()
+console-functions.html:24 ƒ (){}
+console-functions.html:25 ƒ anonymous()
arguments: null
caller: null
length: 0
name: ""
prototype: Object
- __proto__: function ()
+ __proto__: ƒ ()
[[FunctionLocation]]: console-functions.html:13
[[Scopes]]: Scopes[1]
-console-functions.html:24 function (x, y){}
-console-functions.html:25 function anonymous(x, y)
+console-functions.html:24 ƒ (x, y){}
+console-functions.html:25 ƒ anonymous(x, y)
arguments: null
caller: null
length: 2
name: ""
prototype: Object
- __proto__: function ()
+ __proto__: ƒ ()
[[FunctionLocation]]: console-functions.html:14
[[Scopes]]: Scopes[1]
-console-functions.html:24 function namedArgs(x) {}
-console-functions.html:25 function namedArgs(x)
+console-functions.html:24 ƒ namedArgs(x) {}
+console-functions.html:25 ƒ namedArgs(x)
arguments: null
caller: null
length: 1
name: "namedArgs"
prototype: Object
- __proto__: function ()
+ __proto__: ƒ ()
[[FunctionLocation]]: console-functions.html:15
[[Scopes]]: Scopes[1]
-console-functions.html:24 function namedArgs2(x, y) {}
-console-functions.html:25 function namedArgs2(x, y)
+console-functions.html:24 ƒ namedArgs2(x, y) {}
+console-functions.html:25 ƒ namedArgs2(x, y)
arguments: null
caller: null
length: 2
name: "namedArgs2"
prototype: Object
- __proto__: function ()
+ __proto__: ƒ ()
[[FunctionLocation]]: console-functions.html:16
[[Scopes]]: Scopes[1]
-console-functions.html:24 function ({}) {}
-console-functions.html:25 function anonymous({})
+console-functions.html:24 ƒ ({}) {}
+console-functions.html:25 ƒ anonymous({})
arguments: null
caller: null
length: 1
name: ""
prototype: Object
- __proto__: function ()
+ __proto__: ƒ ()
[[FunctionLocation]]: console-functions.html:17
[[Scopes]]: Scopes[1]
-console-functions.html:24 function* whitespace( x ) { }
-console-functions.html:25 function* whitespace( x )
+console-functions.html:24 ƒ* whitespace( x ) { }
+console-functions.html:25 ƒ* whitespace( x )
arguments: (...)
caller: (...)
length: 1
@@ -113,8 +113,8 @@ console-functions.html:25 function* whitespace( x )
[[FunctionLocation]]: console-functions.html:18
[[IsGenerator]]: true
[[Scopes]]: Scopes[1]
-console-functions.html:24 async function whitespace2( x , y , z ) { }
-console-functions.html:25 async function whitespace2( x , y , z )
+console-functions.html:24 async ƒ whitespace2( x , y , z ) { }
+console-functions.html:25 async ƒ whitespace2( x , y , z )
arguments: (...)
caller: (...)
length: 3
@@ -123,27 +123,27 @@ console-functions.html:25 async function whitespace2( x , y , z )
[[FunctionLocation]]: console-functions.html:19
[[Scopes]]: Scopes[1]
console-functions.html:28 Object
- func0: function simple()
- func1: async function asyncSimple()
- func2: function* genSimple()
- func3: function ()
- func4: function (x, y)
- func5: function namedArgs(x)
- func6: function namedArgs2(x, y)
- func7: function ({})
- func8: function* whitespace( x )
- func9: async function whitespace2( x , y , z )
+ func0: ƒ simple()
+ func1: async ƒ asyncSimple()
+ func2: ƒ* genSimple()
+ func3: ƒ ()
+ func4: ƒ (x, y)
+ func5: ƒ namedArgs(x)
+ func6: ƒ namedArgs2(x, y)
+ func7: ƒ ({})
+ func8: ƒ* whitespace( x )
+ func9: async ƒ whitespace2( x , y , z )
__proto__: Object
console-functions.html:29 Object
- func0: function simple()
- func1: async function asyncSimple()
- func2: function* genSimple()
- func3: function ()
- func4: function (x, y)
- func5: function namedArgs(x)
- func6: function namedArgs2(x, y)
- func7: function ({})
- func8: function* whitespace( x )
- func9: async function whitespace2( x , y , z )
+ func0: ƒ simple()
+ func1: async ƒ asyncSimple()
+ func2: ƒ* genSimple()
+ func3: ƒ ()
+ func4: ƒ (x, y)
+ func5: ƒ namedArgs(x)
+ func6: ƒ namedArgs2(x, y)
+ func7: ƒ ({})
+ func8: ƒ* whitespace( x )
+ func9: async ƒ whitespace2( x , y , z )
__proto__: Object

Powered by Google App Engine
This is Rietveld 408576698