summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug578096.html
blob: 22df0757cab3f775af1b43d8bc1cb81eceb2d96d (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=578096
-->
<head>
  <title>Test for Bug 578096</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>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=578096">Mozilla Bug 578096</a>
<p id="display"></p>
<div id="content">
   <input type="file" id="file" onchange="fireXHR()">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
SimpleTest.waitForExplicitFinish();

var url = SimpleTest.getTestFileURL("bug578096LoadChromeScript.js");
var script = SpecialPowers.loadChromeScript(url);

script.addMessageListener("file.created", function (message) {
  SpecialPowers.wrap(document.getElementById('file')).mozSetFileArray([message]);

  var xhr = new XMLHttpRequest();
  xhr.onreadystatechange = function(event) {
    if (xhr.readyState == 4) {
      script.sendAsyncMessage("file.remove", {});
    }
  }

  xhr.open('POST', window.location, true);
  xhr.send(document.getElementById('file').files[0]);
});

script.addMessageListener("file.removed", function (message) {
  ok(true, "We didn't throw! Yay!");
  script.destroy();
  SimpleTest.finish();
});

script.sendAsyncMessage("file.create", {});
</script>
</pre>
</body>
</html>