blob: 6cefb96aa601cdc67ac8ab0051e65e76525690b5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<html>
Test file!
<iframe></iframe>
<script>
var win = document.getElementsByTagName('iframe')[0].contentWindow;
win.document.open();
win.document.write("document.write() from parent called.");
win.document.close();
</script>
</html>
|