- a/LayoutTests/ChangeLog +12 lines
Lines 1-3 a/LayoutTests/ChangeLog_sec1
1
2020-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
1
2020-01-24  youenn fablet  <youenn@apple.com>
13
2020-01-24  youenn fablet  <youenn@apple.com>
2
14
3
        Add support for MediaRecorder.requestData
15
        Add support for MediaRecorder.requestData
- a/LayoutTests/fast/forms/interactive-validation-prevented.html +1 lines
Lines 27-32 function startOrVerify() { a/LayoutTests/fast/forms/interactive-validation-prevented.html_sec1
27
        document.getElementById('s').click();
27
        document.getElementById('s').click();
28
        testPassed('The form was not submitted');
28
        testPassed('The form was not submitted');
29
        shouldBe('document.activeElement', 'document.getElementById("i2")');
29
        shouldBe('document.activeElement', 'document.getElementById("i2")');
30
        document.getElementById('i2').value = 'foo'; // Close the invalidation bubble.
30
        debug('TEST COMPLETE');
31
        debug('TEST COMPLETE');
31
    }
32
    }
32
33

Return to Bug 206669