mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-22 18:29:11 +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>
|
|
|