| 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" 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> |
| OLD | NEW |