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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_screen_network.html

Issue 11275011: Fix accessible label for network select control in OOBE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove additional unnecessary line Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/oobe_screen_network.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div class="step hidden animated" id="connect"> 1 <div class="step hidden animated" id="connect">
2 <div class="step-contents"> 2 <div class="step-contents">
3 <div id="welcome-message" i18n-content="networkScreenGreeting"> 3 <div id="welcome-message" i18n-content="networkScreenGreeting">
4 </div> 4 </div>
5 <div class="control-with-label"> 5 <div class="control-with-label">
6 <label for="language-select" i18n-content="selectLanguage" 6 <label for="language-select" i18n-content="selectLanguage"
7 class="label menu-control"></label> 7 class="label menu-control"></label>
8 <div class="menu-area"> 8 <div class="menu-area">
9 <select id="language-select" class="menu-control"></select> 9 <select id="language-select" class="menu-control"></select>
10 </div> 10 </div>
11 </div> 11 </div>
12 <div class="control-with-label"> 12 <div class="control-with-label">
13 <label for="keyboard-select" i18n-content="selectKeyboard" 13 <label for="keyboard-select" i18n-content="selectKeyboard"
14 class="label menu-control"></label> 14 class="label menu-control"></label>
15 <div class="menu-area"> 15 <div class="menu-area">
16 <select id="keyboard-select" class="menu-control"></select> 16 <select id="keyboard-select" class="menu-control"></select>
17 </div> 17 </div>
18 </div> 18 </div>
19 <div class="control-with-label"> 19 <div class="control-with-label">
20 <!-- TODO: This label doesn't select the network list, since the latter is 20 <label for="networks-list-dropdown" i18n-content="selectNetwork"
21 implemented as a div of spans. Find a way to fix this. -->
22 <label for="networks-list" i18n-content="selectNetwork"
23 class="label menu-control"></label> 21 class="label menu-control"></label>
24 <div class="menu-area"> 22 <div class="menu-area">
25 <div id="networks-list" class="menu-control"></div> 23 <div id="networks-list" class="menu-control"></div>
26 </div> 24 </div>
27 </div> 25 </div>
28 </div> 26 </div>
29 <div id="connect-controls" class="step-controls"></div> 27 <div id="connect-controls" class="step-controls"></div>
30 </div> 28 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/oobe_screen_network.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698