mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
23 lines
530 B
HTML
23 lines
530 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<body>
|
|
<script type="application/javascript">
|
|
|
|
function ok(a, msg) {
|
|
window.parent.postMessage({ status: a ? "OK" : "KO", message: msg }, "*");
|
|
}
|
|
|
|
window.addEventListener('message', receiveMessage, false);
|
|
function receiveMessage(evt) {
|
|
ok (evt.data, "Data received");
|
|
ok (evt.data.port instanceof MessagePort, "Data contains a MessagePort");
|
|
|
|
var a = new MessageChannel();
|
|
window.parent.postMessage({ status: "FINISH", port: a.port2 }, '*');
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|