Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: chrome/browser/resources/options/autofill_edit_address_overlay.html

Issue 6575012: More autofill overlay HTML cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't change <div>s for now... Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="autofill-edit-address-overlay"> 1 <div class="page hidden" id="autofill-edit-address-overlay">
2 <h1 id="autofill-address-title"></h1> 2 <h1 id="autofill-address-title"></h1>
3 <div class="content-area"> 3 <div class="content-area">
4 <div class="input"> 4 <div class="input">
5 <label> 5 <label>
6 <div><span i18n-content="fullNameLabel"></span></div> 6 <div><span i18n-content="fullNameLabel"></span></div>
7 <input type="text" class="form" id="full-name"> 7 <input type="text" class="form" id="full-name">
8 </label> 8 </label>
9 </div> 9 </div>
10 <div class="input"> 10 <div class="input">
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 </div> 83 </div>
84 </div> 84 </div>
85 </div> 85 </div>
86 <div class="input"> 86 <div class="input">
87 <label> 87 <label>
88 <div><span i18n-content="emailLabel"></span></div> 88 <div><span i18n-content="emailLabel"></span></div>
89 <input type="text" class="form" id="email"> 89 <input type="text" class="form" id="email">
90 </label> 90 </label>
91 </div> 91 </div>
92 </div> 92 </div>
93 <div class="action-area"> 93 <div class="action-area button-strip">
94 <div class="button-strip"> 94 <button type="reset" id="autofill-edit-address-cancel-button"
95 <button type="reset" id="autofill-edit-address-cancel-button" 95 i18n-content="cancel"></button>
96 i18n-content="cancel"></button> 96 <button type="submit" id="autofill-edit-address-apply-button" disabled
97 <button type="submit" id="autofill-edit-address-apply-button" disabled 97 i18n-content="ok"></button>
98 i18n-content="ok"></button>
99 </div>
100 </div> 98 </div>
101 </div> 99 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698