Commit b23b8b4e authored by estade's avatar estade Committed by Commit bot

autofill - remove contentDescriptions on EditTexts

BUG=none

Review URL: https://codereview.chromium.org/953163002

Cr-Commit-Position: refs/heads/master@{#318159}
parent ed6a6dee
...@@ -31,8 +31,6 @@ ...@@ -31,8 +31,6 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal"> android:orientation="horizontal">
<!-- TODO(estade): add accessibility content descriptions. -->
<LinearLayout <LinearLayout
android:id="@+id/expiration_container" android:id="@+id/expiration_container"
android:layout_width="wrap_content" android:layout_width="wrap_content"
......
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:imeOptions="flagNoExtractUi" android:imeOptions="flagNoExtractUi"
android:contentDescription="@string/autofill_credit_card_editor_name"
android:inputType="textCapWords" android:inputType="textCapWords"
android:hint="@string/autofill_credit_card_editor_name" /> android:hint="@string/autofill_credit_card_editor_name" />
</org.chromium.chrome.browser.widget.FloatLabelLayout> </org.chromium.chrome.browser.widget.FloatLabelLayout>
...@@ -44,7 +43,6 @@ ...@@ -44,7 +43,6 @@
<EditText <EditText
android:id="@+id/credit_card_number_edit" android:id="@+id/credit_card_number_edit"
android:layout_width="match_parent" android:layout_width="match_parent"
android:contentDescription="@string/autofill_credit_card_editor_number"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:imeOptions="flagNoExtractUi" android:imeOptions="flagNoExtractUi"
android:inputType="phone" android:inputType="phone"
......
...@@ -61,8 +61,7 @@ ...@@ -61,8 +61,7 @@
android:imeOptions="flagNoExtractUi" android:imeOptions="flagNoExtractUi"
android:inputType="phone" android:inputType="phone"
android:singleLine="true" android:singleLine="true"
android:hint="@string/autofill_profile_editor_phone_number" android:hint="@string/autofill_profile_editor_phone_number" />
android:contentDescription="@string/autofill_profile_editor_phone_number" />
</org.chromium.chrome.browser.widget.FloatLabelLayout> </org.chromium.chrome.browser.widget.FloatLabelLayout>
<org.chromium.chrome.browser.widget.FloatLabelLayout <org.chromium.chrome.browser.widget.FloatLabelLayout
...@@ -76,8 +75,7 @@ ...@@ -76,8 +75,7 @@
android:imeOptions="flagNoExtractUi" android:imeOptions="flagNoExtractUi"
android:inputType="textEmailAddress" android:inputType="textEmailAddress"
android:singleLine="true" android:singleLine="true"
android:hint="@string/autofill_profile_editor_email_address" android:hint="@string/autofill_profile_editor_email_address" />
android:contentDescription="@string/autofill_profile_editor_email_address" />
</org.chromium.chrome.browser.widget.FloatLabelLayout> </org.chromium.chrome.browser.widget.FloatLabelLayout>
</LinearLayout> </LinearLayout>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment