blob: ec77d0ac6f03e4b59dac97c082a1ce7f01709be6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test for empty stack in console</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<script type="application/javascript">
SimpleTest.waitForExplicitFinish();
window.setTimeout(console.log.bind(console), 0, "xyz");
window.addEventListener("fake", console.log.bind(console, "xyz"));
window.addEventListener("fake", function() {
ok(true, "Still alive");
SimpleTest.finish();
});
window.dispatchEvent(new Event("fake"));
</script>
</pre>
</body>
</html>
|