forked from mirrors/gecko-dev
This is split from the previous changeset since if we include dom/ the file size is too large for phabricator to handle. This is an autogenerated commit to handle scripts loading mochitest harness files, in the simple case where the script src is on the same line as the tag. This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170 using the `--part 2` argument. Differential Revision: https://phabricator.services.mozilla.com/D27457 --HG-- extra : moz-landing-system : lando
72 lines
1.5 KiB
HTML
72 lines
1.5 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test for Directory API in workers</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="filesystem_commons.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<script type="application/javascript">
|
|
|
|
var fileList;
|
|
|
|
function create_fileList() {
|
|
fileList = document.createElement("input");
|
|
fileList.setAttribute("type", "file");
|
|
document.body.appendChild(fileList);
|
|
|
|
var url = SimpleTest.getTestFileURL("script_fileList.js");
|
|
var script = SpecialPowers.loadChromeScript(url);
|
|
|
|
function onOpened(message) {
|
|
SpecialPowers.wrap(fileList).mozSetDirectory(message.dir);
|
|
script.destroy();
|
|
next();
|
|
}
|
|
|
|
script.addMessageListener("dir.opened", onOpened);
|
|
script.sendAsyncMessage("dir.open", { path: "test" });
|
|
}
|
|
|
|
function test_worker() {
|
|
fileList.getFilesAndDirectories().then(function(array) {
|
|
var worker = new Worker("worker_basic.js");
|
|
worker.onmessage = function(e) {
|
|
if (e.data.type == "finish") {
|
|
next();
|
|
return;
|
|
}
|
|
|
|
if (e.data.type == "test") {
|
|
ok(e.data.test, e.data.message);
|
|
}
|
|
};
|
|
|
|
worker.postMessage(array[0]);
|
|
});
|
|
}
|
|
|
|
var tests = [
|
|
function() { setup_tests(next); },
|
|
|
|
create_fileList,
|
|
test_worker,
|
|
];
|
|
|
|
function next() {
|
|
if (!tests.length) {
|
|
SimpleTest.finish();
|
|
return;
|
|
}
|
|
|
|
var test = tests.shift();
|
|
test();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
next();
|
|
</script>
|
|
</body>
|
|
</html>
|