Files
UXP-Fixed/testing/web-platform/tests/webmessaging/message-channels/004-1.html
T
2018-02-02 04:16:08 -05:00

8 lines
136 B
HTML

<!doctype html>
<title>004-1</title>
<script>
onmessage = function(e) {
var port = e.ports[0];
port.postMessage(e.data);
}
</script>