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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/properties-special-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 unified diff | Download patch
OLDNEW
1 CONSOLE MESSAGE: line 10: true 1 CONSOLE MESSAGE: line 10: true
2 CONSOLE MESSAGE: line 11: function (a,b) { return a + b; } 2 CONSOLE MESSAGE: line 11: function (a,b) { return a + b; }
3 CONSOLE MESSAGE: line 12: function () { [native code] } 3 CONSOLE MESSAGE: line 12: function () { [native code] }
4 CONSOLE MESSAGE: line 13: function* () { yeild [1,2,3] } 4 CONSOLE MESSAGE: line 13: function* () { yeild [1,2,3] }
5 Tests how debugger presents special properties of closures, bound functions and object wrappers. 5 Tests how debugger presents special properties of closures, bound functions and object wrappers.
6 6
7 properties-special.html:10 Boolean 7 properties-special.html:10 Boolean
8 __proto__: Boolean 8 __proto__: Boolean
9 [[PrimitiveValue]]: true 9 [[PrimitiveValue]]: true
10 properties-special.html:11 function anonymous(a,b) 10 properties-special.html:11 ƒ anonymous(a,b)
11 arguments: null 11 arguments: null
12 caller: null 12 caller: null
13 length: 2 13 length: 2
14 name: "" 14 name: ""
15 prototype: Object 15 prototype: Object
16 __proto__: function () 16 __proto__: ƒ ()
17 [[FunctionLocation]]: properties-special.html:11 17 [[FunctionLocation]]: properties-special.html:11
18 [[Scopes]]: Scopes[1] 18 [[Scopes]]: Scopes[1]
19 properties-special.html:12 function bound () 19 properties-special.html:12 ƒ bound ()
20 arguments: (...) 20 arguments: (...)
21 caller: (...) 21 caller: (...)
22 length: 1 22 length: 1
23 name: "bound " 23 name: "bound "
24 __proto__: function () 24 __proto__: ƒ ()
25 [[TargetFunction]]: function (a,b) 25 [[TargetFunction]]: ƒ (a,b)
26 [[BoundThis]]: Object 26 [[BoundThis]]: Object
27 [[BoundArgs]]: Array(1) 27 [[BoundArgs]]: Array(1)
28 properties-special.html:13 function* anonymous() 28 properties-special.html:13 ƒ* anonymous()
29 arguments: (...) 29 arguments: (...)
30 caller: (...) 30 caller: (...)
31 length: 0 31 length: 0
32 name: "" 32 name: ""
33 prototype: Generator 33 prototype: Generator
34 __proto__: GeneratorFunction 34 __proto__: GeneratorFunction
35 [[FunctionLocation]]: properties-special.html:13 35 [[FunctionLocation]]: properties-special.html:13
36 [[IsGenerator]]: true 36 [[IsGenerator]]: true
37 [[Scopes]]: Scopes[1] 37 [[Scopes]]: Scopes[1]
38 38
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698