mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-12 23:12:21 +00:00
15 lines
262 B
HTML
15 lines
262 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<body>
|
||
|
<script type="application/javascript">
|
||
|
|
||
|
var a = new SharedWorker('sharedWorker2_messageChannel.js');
|
||
|
a.port.onmessage = function(evt) {
|
||
|
evt.ports[0].postMessage("Hello from the iframe!");
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|