18 lines
342 B
HTML
18 lines
342 B
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
|
|
</head>
|
|
<body>
|
|
<iframe></iframe>
|
|
<script>
|
|
window.onmessage = e => {
|
|
opener.postMessage(e.data, "*");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|