file_bug209275_2.html (457B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <base href="http://example.com" /> 5 </head> 6 <body onload="load();"> 7 Page 2 initial state 8 9 <script> 10 function load() { 11 // Nuke and rebuild the page. 12 document.removeChild(document.documentElement); 13 html = document.createElement("html"); 14 html.innerHTML = "<body><a href='/' id='link'>B</a></body>" 15 document.appendChild(html); 16 17 // Tell our parent to have a look at us 18 parent.gGen.next(); 19 } 20 </script> 21 22 </body> 23 </html>