mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
16 lines
247 B
HTML
16 lines
247 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<body>
|
|
<script type="application/javascript">
|
|
|
|
window.addEventListener('message', receiveMessage, false);
|
|
function receiveMessage(evt) {
|
|
window.parent.postMessage(evt.data, '*');
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
|