summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/tests/Harness_sanity/test_TestsRunningAfterSimpleTestFinish.html
blob: aa0a7d39ef08c535265b3364670edd05d095f0d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for whether SimpLeTest.ok after SimpleTest.finish is causing an error to be logged</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>

<div id="content" class="testbody">
  <script type="text/javascript">
    SimpleTest.waitForExplicitFinish();
    addLoadEvent(function() {
      ok(true, "This should pass");
      SimpleTest.finish();
    });
    window.onbeforeunload = function() {
      ok(true, "This should cause failures in the harness, because it's run after SimpleTest.finish()");
    }
  </script>
</div>
</body>
</html>