LayoutTests/ChangeLog

 12020-01-24 Ryosuke Niwa <rniwa@webkit.org>
 2
 3 [iOS] REGRESSION(r254699) : fast/forms/interactive-validation-remove-node-in-handler.html is timing out
 4 https://bugs.webkit.org/show_bug.cgi?id=206669
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 The timeout was caused by the invalidation bubble in interactive-validation-prevented.html never getting closed.
 9 Address the issue by explicitly dismissing the invalidation bubble by setting a value to the input element.
 10
 11 * fast/forms/interactive-validation-prevented.html:
 12
1132020-01-24 youenn fablet <youenn@apple.com>
214
315 Add support for MediaRecorder.requestData

LayoutTests/fast/forms/interactive-validation-prevented.html

@@function startOrVerify() {
2727 document.getElementById('s').click();
2828 testPassed('The form was not submitted');
2929 shouldBe('document.activeElement', 'document.getElementById("i2")');
 30 document.getElementById('i2').value = 'foo'; // Close the invalidation bubble.
3031 debug('TEST COMPLETE');
3132 }
3233