Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / navigation / resources / back-to-get-after-post-helper.html
1 <script>
2 window.onload = function() {
3     setTimeout(function() {
4         if (sessionStorage.getItem("backToGet") == "step1") {
5             sessionStorage.setItem("backToGet", "step2");
6             location.assign("../back-to-get-after-post.php");
7         } else {
8             sessionStorage.removeItem("backToGet");
9             if (window.testRunner)
10                 testRunner.notifyDone();
11         }
12     }, 0);
13 };
14 </script>