mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
ef0746d5f8
* * * Bug 1020226 - Test case to crash browser when using Promises on workers. r=khuey
21 lines
373 B
HTML
21 lines
373 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>
|
|
|