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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/chromevox/background/options.html

Issue 2445003002: Reland: Make ChromeVox Next the default ChromeVox experience (Closed)
Patch Set: speculative fixes Created 4 years, 1 month 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 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 1 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 <html> 4 <html>
5 5
6 <head> 6 <head>
7 <title class="i18n" msgid="options_page_title">ChromeVox Options</title> 7 <title class="i18n" msgid="options_page_title">ChromeVox Options</title>
8 <link rel="stylesheet" type="text/css" href="chrome_shared2.css" /> 8 <link rel="stylesheet" type="text/css" href="chrome_shared2.css" />
9 <link rel="stylesheet" type="text/css" href="options_widgets.css" /> 9 <link rel="stylesheet" type="text/css" href="options_widgets.css" />
10 <link rel="stylesheet" type="text/css" href="options.css" /> 10 <link rel="stylesheet" type="text/css" href="options.css" />
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 </label> 48 </label>
49 </div> 49 </div>
50 50
51 <div class="option"> 51 <div class="option">
52 <input id="siteSpecificEnhancements" type="checkbox" class="checkbox pref" n ame="siteSpecificEnhancements" /> 52 <input id="siteSpecificEnhancements" type="checkbox" class="checkbox pref" n ame="siteSpecificEnhancements" />
53 <label for="siteSpecificEnhancements" class="i18n" msgid="options_site_speci fic_enhancements"> 53 <label for="siteSpecificEnhancements" class="i18n" msgid="options_site_speci fic_enhancements">
54 Enhance specific sites (like Google Search). 54 Enhance specific sites (like Google Search).
55 </label> 55 </label>
56 </div> 56 </div>
57 57
58 <div class="option">
59 <input id="useNext" aria-labelledby="useNextLabel" type="checkbox" class="ch eckbox pref" name="useNext"></input>
60 <label id="useNextLabel" class="i18n" msgid="options_use_next_label">
61 Use the new ChromeVox experience (beta)
62 </label>
63 </div>
64
65 <h2 class="i18n" msgid="options_voices">Voices</h2> 58 <h2 class="i18n" msgid="options_voices">Voices</h2>
66 <p class="i18n description" msgid="options_voices_description" id="voices_desc ription"> 59 <p class="i18n description" msgid="options_voices_description" id="voices_desc ription">
67 Change the current voice by selecting an option from the list below. 60 Change the current voice by selecting an option from the list below.
68 </p> 61 </p>
69 62
70 <div> 63 <div>
71 <select class="pref" id="voices" aria-labelledby="voices_description"></sele ct> 64 <select class="pref" id="voices" aria-labelledby="voices_description"></sele ct>
72 <br><br> 65 <br><br>
73 </div> 66 </div>
74 67
(...skipping 29 matching lines...) Expand all
104 97
105 <div> 98 <div>
106 <select class="pref" id="cvox_keymaps" aria-labelledby="keymap_description"> 99 <select class="pref" id="cvox_keymaps" aria-labelledby="keymap_description">
107 </select> 100 </select>
108 <button id="selectKeys" class="i18n" msgid="options_select_keys"> 101 <button id="selectKeys" class="i18n" msgid="options_select_keys">
109 Select keymap 102 Select keymap
110 </button> 103 </button>
111 <br><br> 104 <br><br>
112 </div> 105 </div>
113 106
114 <p class="i18n description" msgid="options_shortcuts_description"
115 id="shortcuts_description">
116 Customize keyboard shortcuts for frequently used commands by typing them int o the
117 corresponding fields below.
118 </p>
119
120 <div id="keysContainer">
121
122 </div>
123 <div id="status" role="live" aria-live="assertive"> 107 <div id="status" role="live" aria-live="assertive">
124 </div> 108 </div>
125 </div> 109 </div>
126 </body> 110 </body>
127 </html> 111 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698