Settings: turn off spellcheck for addresses and names

Bug: 867377
Change-Id: If20d80c069a4eb28769adce9e13731fbc8bb65af
Reviewed-on: https://chromium-review.googlesource.com/1150500
Reviewed-by: Demetrios Papadopoulos <dpapad@chromium.org>
Commit-Queue: Scott Chen <scottchen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#578083}
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html b/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html
index bdf9b96..5ceba36 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html
@@ -77,12 +77,13 @@
               <template is="dom-if" if="[[item.isTextArea]]">
                 <settings-textarea label="[[item.component.fieldName]]"
                     value="{{item.value}}" on-value-changed="updateCanSave_"
-                    class$="address-column [[long_(item)]]" autofocus>
+                    class$="address-column [[long_(item)]]" autofocus
+                    spellcheck="false">
                 </settings-textarea>
               </template>
               <template is="dom-if" if="[[!item.isTextArea]]">
                 <cr-input type="text" label="[[item.component.fieldName]]"
-                    autofocus value="{{item.value}}"
+                    autofocus value="{{item.value}}" spellcheck="false"
                     on-value-changed="updateCanSave_"
                     class$="address-column [[long_(item)]]">
                 </cr-input>
@@ -106,11 +107,11 @@
         <div class="address-row">
           <cr-input id="phoneInput" type="text" label="$i18n{addressPhone}"
               class="address-column last-row" on-value-changed="updateCanSave_"
-              value="{{phoneNumber_}}">
+              value="{{phoneNumber_}}" spellcheck="false">
           </cr-input>
           <cr-input id="emailInput" type="text" label="$i18n{addressEmail}"
               on-value-changed="updateCanSave_" value="{{email_}}"
-              class="address-column long last-row">
+              class="address-column long last-row" spellcheck="false">
           </cr-input>
         </div>
       </div>
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html b/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html
index 4426fdf1..7138118 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html
@@ -54,7 +54,7 @@
       <div slot="title">[[title_]]</div>
       <div slot="body">
         <cr-input id="nameInput" label="$i18n{creditCardName}"
-            value="{{creditCard.name}}" autofocus
+            value="{{creditCard.name}}" autofocus spellcheck="false"
             on-input="onCreditCardNameOrNumberChanged_">
         </cr-input>
         <cr-input id="numberInput" label="$i18n{creditCardNumber}"