blob: 24d16cfcceabb4b50d8b4a502c5bbb905b65ffb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<html>
<head>
<title>Page with script</title>
</head>
<body>
<script type="text/javascript">
parent.window.postMessage("script ran", "*");
</script>
</body>
</html>
|