blob: 21efd76180c1542d6d06b2c67b5c57ffe8b9676b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html>
<body>
<script>
window.addEventListener('message', e => {
window.parent.postMessage(e.data, '*');
});
</script>
<iframe src="embedded-popup-expect-no-hints.html" />
</body>
</html>
|