mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
84ebb25bb7
--HG-- extra : transplant_source : %E6%A1%EB%5C3%95%8A%B4%3F%5C%D8%28%B2%98%5E%A1%C2%E5%1C%EE
49 lines
1.2 KiB
HTML
49 lines
1.2 KiB
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Bug XXXXXX - Test Request object in worker</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test"></pre>
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
function checkEnabled() {
|
|
var worker = new Worker("worker_test_request.js");
|
|
worker.onmessage = function(event) {
|
|
|
|
if (event.data.type == 'finish') {
|
|
SimpleTest.finish();
|
|
} else if (event.data.type == 'status') {
|
|
ok(event.data.status, event.data.msg);
|
|
}
|
|
}
|
|
|
|
worker.onerror = function(event) {
|
|
ok(false, "Worker had an error: " + event.message + " at " + event.lineno);
|
|
SimpleTest.finish();
|
|
};
|
|
|
|
worker.postMessage(true);
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
SpecialPowers.pushPrefEnv({"set": [
|
|
["dom.fetch.enabled", true]
|
|
]}, function() {
|
|
checkEnabled();
|
|
});
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|