12 lines
220 B
HTML
12 lines
220 B
HTML
<!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>
|