file_bug640387.html 399 B

123456789101112131415161718192021222324252627
  1. <html>
  2. <body onhashchange='hashchange()' onload='load()' onpopstate='popstate()'>
  3. <script>
  4. function hashchange() {
  5. var f = (opener || parent).childHashchange;
  6. if (f)
  7. f();
  8. }
  9. function load() {
  10. var f = (opener || parent).childLoad;
  11. if (f)
  12. f();
  13. }
  14. function popstate() {
  15. var f = (opener || parent).childPopstate;
  16. if (f)
  17. f();
  18. }
  19. </script>
  20. Not much to see here...
  21. </body>
  22. </html>