Title: [212136] trunk/LayoutTests
Revision
212136
Author
[email protected]
Date
2017-02-10 12:45:00 -0800 (Fri, 10 Feb 2017)

Log Message

fast/forms/formsubmission-appendFormData-crash.html times out on WebKit1
https://bugs.webkit.org/show_bug.cgi?id=168133

Reviewed by Brent Fulgham.

Call testRunner.notifyDone() synchronously instead of doing it in a
setTimeout(). The test no longer times out on WK1 and still reproduces
the original bug.

* fast/forms/formsubmission-appendFormData-crash.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (212135 => 212136)


--- trunk/LayoutTests/ChangeLog	2017-02-10 20:39:54 UTC (rev 212135)
+++ trunk/LayoutTests/ChangeLog	2017-02-10 20:45:00 UTC (rev 212136)
@@ -1,3 +1,16 @@
+2017-02-10  Chris Dumez  <[email protected]>
+
+        fast/forms/formsubmission-appendFormData-crash.html times out on WebKit1
+        https://bugs.webkit.org/show_bug.cgi?id=168133
+
+        Reviewed by Brent Fulgham.
+
+        Call testRunner.notifyDone() synchronously instead of doing it in a
+        setTimeout(). The test no longer times out on WK1 and still reproduces
+        the original bug.
+
+        * fast/forms/formsubmission-appendFormData-crash.html:
+
 2017-02-10  Filip Pizlo  <[email protected]>
 
         LayoutTest workers/sab/postMessage-clones.html is a flaky failure

Modified: trunk/LayoutTests/fast/forms/formsubmission-appendFormData-crash.html (212135 => 212136)


--- trunk/LayoutTests/fast/forms/formsubmission-appendFormData-crash.html	2017-02-10 20:39:54 UTC (rev 212135)
+++ trunk/LayoutTests/fast/forms/formsubmission-appendFormData-crash.html	2017-02-10 20:45:00 UTC (rev 212136)
@@ -12,10 +12,8 @@
     input.autofocus = true;
     output.appendChild(input);
     form.submit();
-    setTimeout(function() {
     if (window.testRunner)
         testRunner.notifyDone();
-    }, 0);
 }
 
 function focushandler() {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to