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

Side by Side Diff: chrome/browser/resources/settings/languages_page/edit_dictionary_page.html

Issue 2523403003: Language settings: fix focus issues (Closed)
Patch Set: Created 4 years 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
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
8 <link rel="import" href="/settings_shared_css.html"> 8 <link rel="import" href="/settings_shared_css.html">
9 9
10 <dom-module id="settings-edit-dictionary-page"> 10 <dom-module id="settings-edit-dictionary-page">
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 $i18n{addDictionaryWordButton} 44 $i18n{addDictionaryWordButton}
45 </paper-button> 45 </paper-button>
46 </div> 46 </div>
47 <div class="settings-box block"> 47 <div class="settings-box block">
48 <h2>$i18n{customDictionaryWords}</h2> 48 <h2>$i18n{customDictionaryWords}</h2>
49 <div class="list-frame"> 49 <div class="list-frame">
50 <iron-list id="list" items="{{words_}}"> 50 <iron-list id="list" items="{{words_}}">
51 <template> 51 <template>
52 <div class="list-item"> 52 <div class="list-item">
53 <div class="word">[[item]]</div> 53 <div class="word">[[item]]</div>
54 <paper-icon-button icon="cr:clear" on-tap="onRemoveWordTap_"> 54 <paper-icon-button icon="cr:clear" on-tap="onRemoveWordTap_"
55 tabindex$="[[tabIndex]]">
55 </paper-icon-button> 56 </paper-icon-button>
56 </div> 57 </div>
57 </template> 58 </template>
58 </iron-list> 59 </iron-list>
59 </div> 60 </div>
60 </div> 61 </div>
61 </template> 62 </template>
62 <script src="edit_dictionary_page.js"></script> 63 <script src="edit_dictionary_page.js"></script>
63 </dom-module> 64 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698