| OLD | NEW |
| 1 Tests that evaluating something in console won't crash the browser if undefined
value is overriden. The test passes if it doesn't crash. Bug 64155. | 1 Tests that evaluating something in console won't crash the browser if undefined
value is overriden. The test passes if it doesn't crash. Bug 64155. |
| 2 | 2 |
| 3 var x = {a:1}; x.self = x; undefined = x; | 3 var x = {a:1}; x.self = x; undefined = x; |
| 4 Object {a: 1, self: Object} | 4 Object {a: 1, self: Object}Object |
| 5 unknownVar | 5 unknownVar |
| 6 VM:1 Uncaught ReferenceError: unknownVar is not defined(…) | 6 VM:1 Uncaught ReferenceError: unknownVar is not defined(…) |
| 7 (anonymous function) @ VM:1 | 7 (anonymous function) @ VM:1 |
| 8 | 8 |
| OLD | NEW |