Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / console / console-eval-scoped-expected.txt
1 CONSOLE MESSAGE: line 4: 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
4 Tests that evaluating 'console.log()' in the console will have access to its outer scope variables. Bug 60547.
5
6
7 Running: testSnippet1
8 VM:4 with: Object property value
9 VM:1 eval in with: Object property value
10
11 Running: testSnippet2
12 VM:1 eval in function: Function parameter
13
14 Running: testConsoleEvalPrimitiveValue
15 foo
16 "bar"
17
18 Running: testConsoleEvalObject
19 {
20     configurable : true
21     enumerable : true
22     get : {
23         className : "Function"
24         description : "function getter() { }"
25         objectId : <string>
26         type : "function"
27     }
28     isOwn : true
29     name : "getter"
30     set : {
31         type : "undefined"
32     }
33 }
34 {
35     configurable : true
36     enumerable : true
37     get : {
38         type : "undefined"
39     }
40     isOwn : true
41     name : "setter"
42     set : {
43         className : "Function"
44         description : "function setter(_) { }"
45         objectId : <string>
46         type : "function"
47     }
48 }
49 {
50     configurable : true
51     enumerable : true
52     isOwn : true
53     name : "baz"
54     value : {
55         type : "string"
56         value : "baz"
57     }
58     writable : true
59 }
60 {
61     configurable : true
62     enumerable : false
63     isOwn : true
64     name : "__proto__"
65     value : {
66         className : "Object"
67         description : "Object"
68         objectId : <string>
69         type : "object"
70     }
71     writable : true
72 }
73
74 Running: testGetEventListenersDoesNotThrow
75 getEventListeners(document.body.firstChild)
76 Object {}
77