| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <script> | |
| function init() | |
| { | |
| var script = document.createElement("script"); | |
| script.src = "should-load.js"; | |
| document.body.appendChild(script); | |
| var contextDoc = window.top.document.implementation.createDocument("", null); | |
| contextDoc.adoptNode(document.documentElement); | |
| } | |
| init(); | |
| </script> | |
| </body> | |
| </html> |