Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / console / console-eval-exception-report-expected.txt
1 Tests that evaluating an expression with an exception in the console provide correct exception information.
2
3         function foo()
4         {
5             throw {a:239};
6         }
7         function boo()
8         {
9             foo();
10         }
11         boo();
12 VM:4 Uncaught Object {a: 239}
13 call frame:foo at :4
14 call frame:boo at :8
15 call frame: at :10
16