mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 06:08:24 +02:00
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
84 lines
2 KiB
HTML
84 lines
2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test IPCBlob and CreateImageBitmap</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>
|
|
<script type="text/javascript">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function test_mainThread() {
|
|
let bc = new BroadcastChannel('testMainThread');
|
|
bc.onmessage = e => {
|
|
createImageBitmap(e.data).then(image => {
|
|
ok(image.height, "this image has a valid size.");
|
|
}, () => {
|
|
ok(false, "error creating the image!");
|
|
}).then(next);
|
|
}
|
|
|
|
fetch('green.jpg').then(r => r.blob()).then(blob => {
|
|
let bc = new BroadcastChannel('testMainThread');
|
|
bc.postMessage(blob);
|
|
});
|
|
}
|
|
|
|
function test_worker() {
|
|
function workerScript() {
|
|
function ok(a, msg) { postMessage({ type: 'test', status: !!a, msg }); };
|
|
function finish() { postMessage({ type: 'finish' }); };
|
|
|
|
let bc = new BroadcastChannel('testWorker');
|
|
bc.onmessage = e => {
|
|
createImageBitmap(e.data).then(image => {
|
|
ok(image.height, "this image has a valid size.");
|
|
}, () => {
|
|
ok(false, "error creating the image!");
|
|
}).then(finish);
|
|
}
|
|
|
|
fetch('http://mochi.test:8888/tests/dom/file/ipc/tests/green.jpg').then(r => r.blob()).then(blob => {
|
|
let bc = new BroadcastChannel('testWorker');
|
|
bc.postMessage(blob);
|
|
});
|
|
}
|
|
let workerUrl = URL.createObjectURL(new Blob(["(", workerScript.toSource(), ")()"]));
|
|
let worker = new Worker(workerUrl);
|
|
|
|
worker.onmessage = event => {
|
|
if (event.data.type == 'test') {
|
|
ok(event.data.status, event.data.msg);
|
|
return;
|
|
}
|
|
|
|
if (event.data.type == 'finish') {
|
|
next();
|
|
}
|
|
}
|
|
}
|
|
|
|
let tests = [
|
|
test_mainThread,
|
|
test_worker,
|
|
];
|
|
|
|
function next() {
|
|
if (!tests.length) {
|
|
SimpleTest.finish();
|
|
return;
|
|
}
|
|
|
|
let test = tests.shift();
|
|
test();
|
|
}
|
|
|
|
next();
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|