mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-06 16:38:55 +00:00
10 lines
201 B
HTML
10 lines
201 B
HTML
<!doctype html>
|
|
<title>004-2</title>
|
|
<script>
|
|
onmessage = function(e) {
|
|
var port = e.ports[0];
|
|
port.onmessage = function(e) { // implied start()
|
|
parent.postMessage(e.data, '*');
|
|
}
|
|
}
|
|
</script> |