docshell/base/crashtests/500328-1.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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, "");
    11     x = {};
    12     x.toJSON = { history.back(); return "{a:1}"; };
    13     history.pushState(x, "");
    14   }
    15 </script>
    16 </body>
    17 </html>

mercurial