Bug 1316828 - Allow finer control over narration speed, r=eeejay
This patch updates the available speed for user from 8 different speeds to 40.
MozReview-Commit-ID: DZXIhqQERIv
--- a/toolkit/components/narrate/NarrateControls.jsm
+++ b/toolkit/components/narrate/NarrateControls.jsm
@@ -99,17 +99,17 @@ function NarrateControls(mm, win) {
<button disabled id="narrate-skip-previous"
title="${"back"}"></button>
<button id="narrate-start-stop" title="${"start"}"></button>
<button disabled id="narrate-skip-next"
title="${"forward"}"></button>
</div>
<div id="narrate-rate" class="narrate-row">
<input id="narrate-rate-input" value="0" title="${"speed"}"
- step="25" max="100" min="-100" type="range">
+ step="5" max="100" min="-100" type="range">
</div>
<div id="narrate-voices" class="narrate-row"></div>
<div class="dropdown-arrow"></div>
</li>`;
this.narrator = new Narrator(win);
let branch = Services.prefs.getBranch("narrate.");