summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_EventSource_redirects.html
blob: aaf2ff2742017d69cc639ff3943ff05a18cf74b5 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=716841
-->
<head>
  <meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
  <title>Test for Bug 338583</title>
  <script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />

</head>
<body bgColor=white>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=716841">Mozilla Bug 716841</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
<script class="testbody" type="text/javascript">

  function doTest(test_id) {
    source = new EventSource("eventsource_redirect.resource");
    ok(source.url == "http://mochi.test:8888/tests/dom/base/test/eventsource_redirect.resource", "Test failed.");
    ok(source.readyState == 0 || source.readyState == 1, "Test failed.");

    source.onopen = function (event) {
      ok(true, "opened");
    };

    source.onmessage = function (event) {
      ok(true, "event received");
      source.close();
      SimpleTest.finish();
    };

    source.onerror = function (event) {
      ok(false, "received onError: " + event);
      source.close();
      SimpleTest.finish();
    };

  }

  SimpleTest.waitForExplicitFinish();
  addLoadEvent(doTest);
</script>
</pre>

</body>
</html>