file_bug209275_3.html 536 B

123456789101112131415161718192021222324
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <base href="http://example.org" />
  5. </head>
  6. <body onload="load();">
  7. Initial state
  8. <script>
  9. function load() {
  10. // Nuke and rebuild the page. If document.open() clears the <base> properly,
  11. // our new <base> will take precedence and the test will pass.
  12. document.open();
  13. document.write("<html><base href='http://mochi.test:8888' /><body>" +
  14. "<a id='link' href='/'>A</a></body></html>");
  15. // Tell our parent to have a look at us.
  16. parent.gGen.next();
  17. }
  18. </script>
  19. </body>
  20. </html>