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

Unified Diff: chrome/browser/resources/options/browser_options.html

Issue 2161183002: add aria-labelledby to options device sliders (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/browser_options.html
diff --git a/chrome/browser/resources/options/browser_options.html b/chrome/browser/resources/options/browser_options.html
index 553ccef6c8f4552de4d391d1206032b807b444f2..42379f55f19dd8f643e459fa150d58d9f4e2fc39 100644
--- a/chrome/browser/resources/options/browser_options.html
+++ b/chrome/browser/resources/options/browser_options.html
@@ -107,14 +107,18 @@
<div>
<span i18n-content="deviceGroupDescription"></span>
<div id="touchpad-settings" class="settings-row" hidden>
- <span class="option-name" i18n-content="touchpadSpeed"></span>
+ <span id="touchpad-speed-label" class="option-name"
+ i18n-content="touchpadSpeed"></span>
<input id="touchpad-sensitivity-range" type="range" min="1" max="5"
- pref="settings.touchpad.sensitivity2" class="touch-slider">
+ pref="settings.touchpad.sensitivity2" class="touch-slider"
+ aria-labelledby="touchpad-speed-label">
</div>
<div id="mouse-settings" class="settings-row" hidden>
- <span class="option-name" i18n-content="mouseSpeed"></span>
+ <span id="mouse-speed-label" class="option-name"
+ i18n-content="mouseSpeed"></span>
<input id="mouse-sensitivity-range" type="range" min="1" max="5"
- pref="settings.mouse.sensitivity2" class="touch-slider">
+ pref="settings.mouse.sensitivity2" class="touch-slider"
+ aria-labelledby="mouse-speed-label">
</div>
<div id="no-pointing-devices" i18n-content="noPointingDevices"
class="settings-row" hidden>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698