gecko-dev/dom/file/tests/test_bug1507893.html
Brian Grinstead 0d460e3432 Bug 1544322 - Part 2.2 - Remove the [type] attribute for one-liner <script> tags loading files in /tests/SimpleTest/ in dom/ r=bzbarsky
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
2019-04-16 03:53:28 +00:00

64 lines
1.3 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Blob URLs fetched in workers</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<script>
SimpleTest.waitForExplicitFinish();
// Let's be positive.
Promise.resolve()
// Create a file.
.then(_ => {
return new Promise(resolve => {
let openerURL = SimpleTest.getTestFileURL("fileapi_chromeScript.js");
let opener = SpecialPowers.loadChromeScript(openerURL);
opener.addMessageListener("files.opened", files => {
resolve(files[0]);
});
opener.sendAsyncMessage("files.open", [ "I am the blob content" ]);
})
})
// Just a couple of checks
.then(file => {
ok(file instanceof File, "We want a file");
ok(file.size > 0, "We have content");
return file;
})
// Let's create a blobURL
.then(file => URL.createObjectURL(file))
// Let's send it to a worker.
.then(url => {
return new Promise(resolve => {
let w = new Worker('worker_bug1507893.js');
w.onmessage = e => {
resolve(e.data);
};
w.postMessage(url);
});
})
// Let's check the worker's output
.then(blob => {
ok(blob instanceof File, "The worker sends us a blob");
ok(blob.size > 0, "We have data");
})
// All done.
.then(SimpleTest.finish);
</script>
</body>
</html>