blob: 2a405b583e8240065a754d0e7f6e3aa90f648dc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<script>
// HACK: This is not an ideal way to deliver chrome messages
// to an inner frame content but seems only way that would
// make `event.source` this (outer frame) window.
window.onmessage = function(event) {
var frame = document.querySelector("iframe");
var content = frame.contentWindow;
// If message is posted from chrome it has no `event.source`.
if (event.source === null)
content.postMessage(event.data, "*");
};
</script>
</head>
<body style="overflow: hidden"></body>
</html>
|