fast/loader/form-submission-after-beforeunload-cancel.html is flaky
authordarin@chromium.org <darin@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 13 Mar 2012 23:11:25 +0000 (23:11 +0000)
committerdarin@chromium.org <darin@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 13 Mar 2012 23:11:25 +0000 (23:11 +0000)
https://bugs.webkit.org/show_bug.cgi?id=81024

Reviewed by Andy Estes.

* fast/loader/form-submission-after-beforeunload-cancel.html:
Give the form post a better chance of loading before the FAIL timer.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@110633 268f45cc-cd09-0410-ab3c-d52691b4dbfc

LayoutTests/ChangeLog
LayoutTests/fast/loader/form-submission-after-beforeunload-cancel.html

index 0e1c563..ca7c96b 100644 (file)
@@ -1,3 +1,13 @@
+2012-03-13  Darin Fisher  <darin@chromium.org>
+
+        fast/loader/form-submission-after-beforeunload-cancel.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=81024
+
+        Reviewed by Andy Estes.
+
+        * fast/loader/form-submission-after-beforeunload-cancel.html:
+        Give the form post a better chance of loading before the FAIL timer.
+
 2012-03-13  Dave Tharp  <dtharp@codeaurora.org>
 
         Alternate xml-stylesheets with no title are loaded, in violation of the CSSOM draft
index f226034..00cfa76 100644 (file)
@@ -20,7 +20,7 @@ window.addEventListener("beforeunload", function() {
             document.getElementById("console").innerHTML = "FAIL";
             if (window.layoutTestController)
                 layoutTestController.notifyDone();
-        }, 0);
+        }, 1000);
 
         document.forms[0].submit();
     }, 0);