summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/test_worker_xhr_cors_redirect.html
blob: 777c31b1c22252eea6f411510fd4bc77352df05f (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1206121</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript">

"use strict";

var worker = new Worker("worker_xhr_cors_redirect.js");
worker.onmessage = function(e) {
  is(e.data, 200, "We want to read 200 here.");
  runTests();
};

var tests = [ 'http://example.com/tests/dom/xhr/tests/worker_xhr_cors_redirect.sjs',
              'http://example.com/tests/dom/xhr/tests/worker_xhr_cors_redirect.sjs?redirect',
              'worker_xhr_cors_redirect.sjs?redirect' ];
function runTests() {
  if (!tests.length) {
    SimpleTest.finish();
    return;
  }

  worker.postMessage(tests.shift());
}

SimpleTest.waitForExplicitFinish();
  </script>
</head>
<body onload="runTests()">
</body>
</html>