6 lines
135 B
HTML
6 lines
135 B
HTML
<!doctype html>
|
|
<script>
|
|
"use strict";
|
|
let target = (window.opener || window.parent);
|
|
target.postMessage("ping", "*");
|
|
</script>
|