Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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>