summaryrefslogtreecommitdiffstats
path: root/dom/bindings/test/test_worker_UnwrapArg.html
blob: 8bc23fa6301c0d329fb90395954f78cbc4babed5 (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
54
55
56
57
58
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1127206
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1127206</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript">

  /** Test for Bug 1127206 **/
  SimpleTest.waitForExplicitFinish();
  var blob = new Blob([
    `try { new File({}); }
     catch (e) {
       postMessage("throwing on random object");
     }
     try { new File(new Blob(["abc"])); }
     catch (e)  {
       postMessage("throwing on Blob");
     }
     try { new File("abc"); }
     catch (e) {
       postMessage("throwing on string");
     }
     postMessage('finishTest')`]);
  var url = URL.createObjectURL(blob);
  var w = new Worker(url);
  var expectedResults = [
    "throwing on random object",
    "throwing on Blob",
    "throwing on string",
  ];
  var curIndex = 0;
  w.onmessage = function(e) {
    if (curIndex == expectedResults.length) {
      is(e.data, "finishTest", "What message is this?");
      SimpleTest.finish();
    } else {
      is(e.data, expectedResults[curIndex],
         "Message " + (curIndex + 1) + " should be correct");
      ++curIndex;
    }
  };
  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1127206">Mozilla Bug 1127206</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
</pre>
</body>
</html>