- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / test_file_with_about_blank_iframe.html
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>