Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / loader / stateobjects / resources / replacestate-in-iframe-window-child.html
1 <script>
2 window.onunload = function() {
3   // No page cache
4 }
5
6 window.onpageshow = function(e) {
7   alert("onpageshow");
8   if (!sessionStorage.beganTest) {
9     sessionStorage.beganTest = true;
10     top.opener.windowLoaded();
11   } else {
12     top.opener.notifyDone(window == parent ? "FAIL" : "PASS");
13   }
14 }
15 </script>