3 <script src=
"../../http/tests/inspector/inspector-test.js"></script>
4 <script src=
"../../http/tests/inspector/console-test.js"></script>
8 InspectorTest
.evaluateInConsole("var x = {a:1}; x.self = x; undefined = x;", step1
);
12 InspectorTest
.evaluateInConsole("unknownVar", step2
);
16 InspectorTest
.dumpConsoleMessagesIgnoreErrorStackFrames();
17 InspectorTest
.completeTest();
23 <body onload=
"runTest()">
25 Tests that evaluating something in console won't crash the browser if undefined value
26 is overriden. The test passes if it doesn't crash.
27 <a href=
"https://bugs.webkit.org/show_bug.cgi?id=64155">Bug
64155.
</a>