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/options/language_options.html

Issue 7067036: Options: Remove the hidden class, since we override the hidden attribute to set (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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="languagePage"> 1 <div class="page" id="languagePage" hidden>
2 <h1 i18n-content="languagePage"></h1> 2 <h1 i18n-content="languagePage"></h1>
3 <div id="notification"> 3 <div id="notification">
4 <span>&nbsp;</span> 4 <span>&nbsp;</span>
5 <span class="link"><span class="link-color"></span></span> 5 <span class="link"><span class="link-color"></span></span>
6 </div> 6 </div>
7 <div class="language-options-header"> 7 <div class="language-options-header">
8 <div i18n-content="add_language_instructions"></div> 8 <div i18n-content="add_language_instructions"></div>
9 <if expr="pp_ifdef('chromeos')"> 9 <if expr="pp_ifdef('chromeos')">
10 <div i18n-content="input_method_instructions"></div> 10 <div i18n-content="input_method_instructions"></div>
11 </if> 11 </if>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 <div i18n-content="select_previous_input_method_hint"></div> 52 <div i18n-content="select_previous_input_method_hint"></div>
53 </if> 53 </if>
54 <if expr="not pp_ifdef('chromeos')"> 54 <if expr="not pp_ifdef('chromeos')">
55 <div id="spell-check-option" class="checkbox"> 55 <div id="spell-check-option" class="checkbox">
56 <label> 56 <label>
57 <input id="enable-spell-check" pref="browser.enable_spellchecking" 57 <input id="enable-spell-check" pref="browser.enable_spellchecking"
58 metric="Options_SpellCheck" type="checkbox"> 58 metric="Options_SpellCheck" type="checkbox">
59 <span i18n-content="enable_spell_check"></span> 59 <span i18n-content="enable_spell_check"></span>
60 </label> 60 </label>
61 </div> 61 </div>
62 <div id="auto-spell-correction-option" class="hidden" class="checkbox"> 62 <div id="auto-spell-correction-option" class="checkbox" hidden>
63 <label> 63 <label>
64 <input id="enable-auto-spell-correction" 64 <input id="enable-auto-spell-correction"
65 pref="browser.enable_autospellcorrect" 65 pref="browser.enable_autospellcorrect"
66 metric="Options_AutoSpellCorrection" type="checkbox"> 66 metric="Options_AutoSpellCorrection" type="checkbox">
67 <span i18n-content="enable_auto_spell_correction"></span> 67 <span i18n-content="enable_auto_spell_correction"></span>
68 </label> 68 </label>
69 </div> 69 </div>
70 </if> 70 </if>
71 </div> 71 </div>
72 </div> 72 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698