Title: [284933] trunk/LayoutTests
Revision
284933
Author
[email protected]
Date
2021-10-27 11:30:29 -0700 (Wed, 27 Oct 2021)

Log Message

[ iOS Release GPUProcess ] fast/forms/form-submission-crash-3.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=232312
<rdar://problem/84667412>

Reviewed by Alex Christensen.

Make sure the focus event has fired before calling finishJSTest since it changes the
output of the test.

* fast/forms/form-submission-crash-3.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (284932 => 284933)


--- trunk/LayoutTests/ChangeLog	2021-10-27 18:26:59 UTC (rev 284932)
+++ trunk/LayoutTests/ChangeLog	2021-10-27 18:30:29 UTC (rev 284933)
@@ -1,3 +1,16 @@
+2021-10-27  Chris Dumez  <[email protected]>
+
+        [ iOS Release GPUProcess ] fast/forms/form-submission-crash-3.html is a flaky failure
+        https://bugs.webkit.org/show_bug.cgi?id=232312
+        <rdar://problem/84667412>
+
+        Reviewed by Alex Christensen.
+
+        Make sure the focus event has fired before calling finishJSTest since it changes the
+        output of the test.
+
+        * fast/forms/form-submission-crash-3.html:
+
 2021-10-27  Eric Hutchison  <[email protected]>
 
         Fix test expectations for imported/w3c/web-platform-tests/html/cross-origin-opener-policy/reporting/navigation-reporting/reporting-coop-navigated-opener.https.html to include DumpJSConsoleLogInStdErr.

Modified: trunk/LayoutTests/fast/forms/form-submission-crash-3.html (284932 => 284933)


--- trunk/LayoutTests/fast/forms/form-submission-crash-3.html	2021-10-27 18:26:59 UTC (rev 284932)
+++ trunk/LayoutTests/fast/forms/form-submission-crash-3.html	2021-10-27 18:30:29 UTC (rev 284933)
@@ -9,6 +9,7 @@
 function eventhandler() {
     div1.innerHTML = "foo";
     gc();
+    setTimeout(finishJSTest, 10);
 }
  
 function eventhandler2() {
@@ -21,7 +22,6 @@
     input._onfocus_ = eventhandler;
     button.click();
     testPassed('if not crashed.');
-    finishJSTest();
 }
 </script>
 </head>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to