mirror of
https://github.com/roytam1/palemoon26.git
synced 2026-05-27 09:28:56 +00:00
21 lines
376 B
HTML
21 lines
376 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
window.addEventListener("message", function(msg) {
|
|
parent.postMessage(msg.data, "*");
|
|
});
|
|
|
|
parent.postMessage({
|
|
first: "a string",
|
|
second: ["an", "array"],
|
|
third: {an: 'object'}
|
|
}, '*');
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Inner iframe</h1>
|
|
</body>
|
|
</html>
|