mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|