Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / navigation / resources / pushState-onload.html
1 <body>
2 <script>
3 window.onpopstate = function() {
4     parent.addChild();
5 };
6
7 setTimeout(function() {
8     history.pushState("Test", "", "#test");
9     parent.setupDone();
10 }, 0);
11 </script>
12 </body>