blob: 96d2886f0e3e73a346c3a85fc334c8fd06e2b737 (
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"></iframe>
</body>
</html>
|