5 <title>Test for empty stack in console
</title>
6 <script type=
"application/javascript" src=
"/tests/SimpleTest/SimpleTest.js"></script>
7 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css"/>
10 <script type=
"application/javascript">
11 SimpleTest.waitForExplicitFinish();
13 window.setTimeout(console.log.bind(console),
0,
"xyz");
15 window.addEventListener(
"fake", console.log.bind(console,
"xyz"));
17 window.addEventListener(
"fake", function() {
18 ok(true,
"Still alive");
22 window.dispatchEvent(new Event(
"fake"));