Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 49f37221 authored by Android (Google) Code Review's avatar Android (Google) Code Review Committed by The Android Open Source Project
Browse files

am 12bba912: Merge change 3238 into donut

Merge commit '12bba912'

* commit '12bba912':
  Browser edit fields should report variation WEB_EDIT_TEXT.
parents c54f78b8 12bba912
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -511,7 +511,8 @@ import java.util.ArrayList;
     * removing the password input type.
     */
    public void setSingleLine(boolean single) {
        int inputType = EditorInfo.TYPE_CLASS_TEXT;
        int inputType = EditorInfo.TYPE_CLASS_TEXT
                | EditorInfo.TYPE_TEXT_VARIATION_WEB_EDIT_TEXT;
        if (!single) {
            inputType |= EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE
                    | EditorInfo.TYPE_TEXT_FLAG_CAP_SENTENCES