summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_bug143220.html
blob: f94ec5571e5ec073700314e9fffef15c637f673b (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=143220
-->
<head>
  <title>Test for Bug 143220</title>
  <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=143220">Mozilla Bug 143220</a>
<p id="display">
  <input type="file" id="i1">
  <input type="file" id="i2">
</p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 143220 **/
SimpleTest.waitForExplicitFinish();
const helperURL = SimpleTest.getTestFileURL("simpleFileOpener.js");
const helper = SpecialPowers.loadChromeScript(helperURL);
helper.addMessageListener("fail", function onFail(message) {
  is(message, null, "chrome script failed");
  SimpleTest.finish();
});
helper.addMessageListener("file.opened", onFileOpened);
helper.sendAsyncMessage("file.open", "test_bug143220.txt");

function onFileOpened(message) {
  const { leafName, fullPath, domFile } = message;

  function initControl1() {
    SpecialPowers.wrap($("i1")).mozSetFileArray([domFile]);
  }

  function initControl2() {
    SpecialPowers.wrap($("i2")).mozSetFileArray([domFile]);
  }

  // Check that we can't just set the value
  try {
    $("i1").value = fullPath;
    is(0, 1, "Should have thrown exception on set!");
  } catch(e) {
    is($("i1").value, "", "Shouldn't have value here");
  }

  initControl1();
  initControl2();

  is($("i1").value, 'C:\\fakepath\\' + leafName, "Leaking full value?");
  is($("i2").value, 'C:\\fakepath\\' + leafName, "Leaking full value?");

  helper.addMessageListener("file.removed", onFileRemoved);
  helper.sendAsyncMessage("file.remove", null);
}

function onFileRemoved() {
  helper.destroy();
  SimpleTest.finish();
}

</script>
</pre>
</body>
</html>