autocorrect="off" with Touch KeyboardNote: The touch keyboard's autocorrect behavior depends on
its internal prediction model, which may vary by language, region, and
learned user patterns. If the suggested misspelled words below do not
trigger an autocorrection on your device, substitute any misspelled word
that the touch keyboard does autocorrect. First confirm autocorrection
is working using the autocorrect="on" test cases before
testing the autocorrect="off" cases.
<input> with autocorrect="on"Type "truff" then press space using the touch keyboard.
PASS: The field contains "tuff " (autocorrect is active and corrects the input).
<input> with autocorrect="off"Type "recieve" then press space using the touch keyboard.
PASS: The field contains "recieve " (the typed text is preserved, not autocorrected to "receive ").
<textarea> with autocorrect="on"Type "vegen" then press space using the touch keyboard.
PASS: The field contains "vegan " (autocorrect is active and corrects the input).
<textarea> with autocorrect="off"Type "occured" then press space using the touch keyboard.
PASS: The field contains "occured " (the typed text is preserved, not autocorrected to "occurred ").
<div contenteditable> with autocorrect="on"Type "definately" then press space using the touch keyboard.
PASS: The field contains "definitely " (autocorrect is active and corrects the input).
<div contenteditable> with autocorrect="off"Type "seperate" then press space using the touch keyboard.
PASS: The field contains "seperate " (the typed text is preserved, not autocorrected to "separate ").