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

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

Issue 2782993002: Add an options page to Select-to-Speak and allow setting voice name, rate (Closed)
Patch Set: fix unit tests Created 3 years, 8 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
OLDNEW
(Empty)
1 <!-- Copyright 2017 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. -->
4 <!doctype html>
5 <html>
6 <head>
7 <title class="i18n" msgid="options_page_title">
8 Select-to-speak Options
9 </title>
10 <link rel="stylesheet" type="text/css" href="options.css">
11 </head>
12 <body>
13 <h1 class="i18n" msgid="name"></h1>
14
15 <div class="container">
16
17 <h2 class="i18n" msgid="options_speech"></h2>
18 <div class="option">
19 <span class="i18n" msgid="options_voices_description"
20 id="voices_description"></span>
21 <select id="voice" aria-labelledby="voices_description">
22 </select>
23 </div>
24
25 <div class="option">
26 <span class="i18n" msgid="options_rate_description"
27 id="rate_description"></span>
28 <select id="rate" aria-labelledby="rate_description">
29 <option value="0.5" class="i18n" msgid="options_rate_slowest">
30 </option>
31 <option value="0.75" class="i18n" msgid="options_rate_slow">
32 </option>
33 <option value="1.0" class="i18n" msgid="options_rate_normal">
34 </option>
35 <option value="1.25" class="i18n" msgid="options_rate_fast">
36 </option>
37 <option value="1.5" class="i18n" msgid="options_rate_faster">
38 </option>
39 <option value="2.0" class="i18n" msgid="options_rate_fastest">
40 </option>
41 </select>
42 </div>
43
44 </div>
45
46 <script src="select_to_speak_options.js"></script>
47 </body>
48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698