1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<html> <body> <p>file_NestedFramesOuter.html</p> <script> addEventListener('load', function() { setTimeout(createIframe, 0); }); function createIframe() { var iframe = document.createElement('iframe'); iframe.setAttribute('mozbrowser', true); iframe.src = location.hash.substr(1); document.body.appendChild(iframe); } </script> </body> </html>