500328-1.html 443 B

123456789101112131415161718
  1. <!DOCTYPE HTML>
  2. <html>
  3. <body onload="test();">
  4. <script>
  5. function test() {
  6. // Test that calling pushState() with a state object which calls
  7. // history.back() doesn't crash. We need to make sure that there's at least
  8. // one entry in the history before we do anything else.
  9. history.pushState(null, "");
  10. x = {};
  11. x.toJSON = { history.back(); return "{a:1}"; };
  12. history.pushState(x, "");
  13. }
  14. </script>
  15. </body>
  16. </html>