mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
14 lines
262 B
HTML
14 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>
|
||
|
|
|