blob: 65a168986f2eeb815337022cff29195a5674b3b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1426467
When we use windowUtils.resumeTimeouts to resume timeouts in a window, that call
should not immediately dispatch `onmessage` handlers for messages from workers.
-->
<head>
<meta charset="utf-8">
<title>Mozilla Bug 1426467</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
</head>
<body>
<pre id="test">
<script src='test_suspendTimeouts.js'></script>
</pre>
</body>
</html>
|