Chromium Code Reviews| OLD | NEW |
|---|---|
| (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">50%</option> | |
| 30 <option value="0.75">75%</option> | |
| 31 <option value="1.0">100%</option> | |
| 32 <option value="1.25">125%</option> | |
| 33 <option value="1.5">150%</option> | |
| 34 <option value="1.75">175%</option> | |
| 35 <option value="2.0">200%</option> | |
|
David Tseng
2017/03/29 22:24:45
Would be nice to make these human friendly (e.g. v
dmazzoni
2017/03/30 20:19:17
Done.
| |
| 36 </select> | |
| 37 </div> | |
| 38 | |
| 39 </div> | |
| 40 | |
| 41 <script src="select_to_speak_options.js"></script> | |
| 42 </body> | |
| 43 </html> | |
| OLD | NEW |