Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 Test file! | |
| 3 <iframe></iframe> | |
| 4 <script> | |
| 5 var win = document.getElementsByTagName('iframe')[0].contentWindow; | |
| 6 win.document.open(); | |
| 7 win.document.write("document.write() from parent called."); | |
| 8 win.document.close(); | |
| 9 </script> | |
| 10 </html> | |
| OLD | NEW |