mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
f7ffcd09fb
Differential Revision: https://phabricator.services.mozilla.com/D99595
20 lines
372 B
HTML
20 lines
372 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=1020226
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for Bug 1020226</title>
|
|
</head>
|
|
<body>
|
|
|
|
<script type="application/javascript">
|
|
var worker = new Worker("bug1020226_worker.js");
|
|
worker.onmessage = function(e) {
|
|
window.parent.postMessage("loaded", "*");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|