OLD | NEW |
1 CONSOLE MESSAGE: line 4: with: Object property value | 1 CONSOLE MESSAGE: line 4: with: Object property value |
2 CONSOLE MESSAGE: line 1: eval in with: Object property value | 2 CONSOLE MESSAGE: line 1: eval in with: Object property value |
3 CONSOLE MESSAGE: line 1: eval in function: Function parameter | 3 CONSOLE MESSAGE: line 1: eval in function: Function parameter |
4 Tests that evaluating 'console.log()' in the console will have access to its out
er scope variables. Bug 60547. | 4 Tests that evaluating 'console.log()' in the console will have access to its out
er scope variables. Bug 60547. |
5 | 5 |
6 | 6 |
7 Running: testSnippet1 | 7 Running: testSnippet1 |
8 with: Object property value VM:4 | 8 with: Object property value VM:4 |
9 eval in with: Object property value VM:1 | 9 eval in with: Object property value VM:1 |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 { | 34 { |
35 configurable : true | 35 configurable : true |
36 enumerable : true | 36 enumerable : true |
37 get : { | 37 get : { |
38 type : "undefined" | 38 type : "undefined" |
39 } | 39 } |
40 isOwn : true | 40 isOwn : true |
41 name : "setter" | 41 name : "setter" |
42 set : { | 42 set : { |
43 className : "Object" | 43 className : "Object" |
44 description : "function setter() { }" | 44 description : "function setter(_) { }" |
45 objectId : <string> | 45 objectId : <string> |
46 type : "function" | 46 type : "function" |
47 } | 47 } |
48 } | 48 } |
49 { | 49 { |
50 configurable : true | 50 configurable : true |
51 enumerable : true | 51 enumerable : true |
52 isOwn : true | 52 isOwn : true |
53 name : "baz" | 53 name : "baz" |
54 value : { | 54 value : { |
(...skipping 13 matching lines...) Expand all Loading... |
68 objectId : <string> | 68 objectId : <string> |
69 type : "object" | 69 type : "object" |
70 } | 70 } |
71 writable : true | 71 writable : true |
72 } | 72 } |
73 | 73 |
74 Running: testGetEventListenersDoesNotThrow | 74 Running: testGetEventListenersDoesNotThrow |
75 getEventListeners(document.body.firstChild) | 75 getEventListeners(document.body.firstChild) |
76 Object {} | 76 Object {} |
77 | 77 |
OLD | NEW |