dom/workers/test/bug1020226_frame.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/workers/test/bug1020226_frame.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,20 @@
     1.4 +<!DOCTYPE HTML>
     1.5 +<html>
     1.6 +<!--
     1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=1020226
     1.8 +-->
     1.9 +<head>
    1.10 +  <meta charset="utf-8">
    1.11 +  <title>Test for Bug 1020226</title>
    1.12 +</head>
    1.13 +<body>
    1.14 +
    1.15 +<script type="application/javascript">
    1.16 +  var worker = new Worker("bug1020226_worker.js");
    1.17 +  worker.onmessage = function(e) {
    1.18 +    window.parent.postMessage("loaded", "*");
    1.19 +  }
    1.20 +</script>
    1.21 +</body>
    1.22 +</html>
    1.23 +

mercurial