blob: 98e0ad46f0e48ad430b8d1915a79b4eb94859f96 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test for bug 1319088</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<input id="input" type="file"></input>
<script type="application/javascript">
function testSetup() {
SpecialPowers.pushPrefEnv({"set": [["dom.webkitBlink.dirPicker.enabled", true]]}, next);
}
function populateInputFile() {
var url = SimpleTest.getTestFileURL("script_fileList.js");
var script = SpecialPowers.loadChromeScript(url);
function onOpened(message) {
var input = document.getElementById("input");
SpecialPowers.wrap(input).mozSetFileArray([message.file]);
script.destroy();
next();
}
script.addMessageListener("file.opened", onOpened);
script.sendAsyncMessage("file.open");
}
function checkBug() {
var input = document.getElementById("input");
is(input.files[0].webkitRelativePath, "", "No relative path!");
let form = document.createElement("form");
form.appendChild(input);
is(input.files[0].webkitRelativePath, "", "No relative path!");
SimpleTest.finish();
}
var tests = [
testSetup,
populateInputFile,
checkBug,
];
function next() {
if (!tests.length) {
SimpleTest.finish();
return;
}
var test = tests.shift();
test();
}
SimpleTest.waitForExplicitFinish();
next();
</script>
</body>
</html>
|