Upstream version 9.38.198.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 window.onload = function() {
8     setTimeout(function() {
9         history.pushState("Test", "", "#test");
10         parent.sameDocumentSetupDone();
11     }, 0);
12 }
13 </script>
14 </body>