Title: [255115] trunk/LayoutTests
Revision
255115
Author
[email protected]
Date
2020-01-24 20:24:10 -0800 (Fri, 24 Jan 2020)

Log Message

[iOS] REGRESSION(r254699) : fast/forms/interactive-validation-remove-node-in-handler.html is timing out
https://bugs.webkit.org/show_bug.cgi?id=206669

Reviewed by Wenson Hsieh.

The timeout was caused by the invalidation bubble in interactive-validation-prevented.html never getting closed.
Address the issue by explicitly dismissing the invalidation bubble by setting a value to the input element.

* fast/forms/interactive-validation-prevented.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (255114 => 255115)


--- trunk/LayoutTests/ChangeLog	2020-01-25 02:09:50 UTC (rev 255114)
+++ trunk/LayoutTests/ChangeLog	2020-01-25 04:24:10 UTC (rev 255115)
@@ -1,3 +1,15 @@
+2020-01-24  Ryosuke Niwa  <[email protected]>
+
+        [iOS] REGRESSION(r254699) : fast/forms/interactive-validation-remove-node-in-handler.html is timing out
+        https://bugs.webkit.org/show_bug.cgi?id=206669
+
+        Reviewed by Wenson Hsieh.
+
+        The timeout was caused by the invalidation bubble in interactive-validation-prevented.html never getting closed.
+        Address the issue by explicitly dismissing the invalidation bubble by setting a value to the input element.
+
+        * fast/forms/interactive-validation-prevented.html:
+
 2020-01-24  Wenson Hsieh  <[email protected]>
 
         [iOS] Long pressing text inside a selection should update the selection

Modified: trunk/LayoutTests/fast/forms/interactive-validation-prevented.html (255114 => 255115)


--- trunk/LayoutTests/fast/forms/interactive-validation-prevented.html	2020-01-25 02:09:50 UTC (rev 255114)
+++ trunk/LayoutTests/fast/forms/interactive-validation-prevented.html	2020-01-25 04:24:10 UTC (rev 255115)
@@ -27,6 +27,7 @@
         document.getElementById('s').click();
         testPassed('The form was not submitted');
         shouldBe('document.activeElement', 'document.getElementById("i2")');
+        document.getElementById('i2').value = 'foo'; // Close the invalidation bubble.
         debug('TEST COMPLETE');
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to