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

Side by Side Diff: chrome/browser/resources/options/chromeos/internet_detail.html

Issue 552533005: Fix for= usage in chromeos internet detail overlay (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: relative patchset Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="details-internet-page" class="page" hidden> 1 <div id="details-internet-page" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <!-- Network header --> 3 <!-- Network header -->
4 <div id="network-details-header"> 4 <div id="network-details-header">
5 <div id="network-details-title"></div> 5 <div id="network-details-title"></div>
6 <div id="network-details-subtitle"> 6 <div id="network-details-subtitle">
7 <span id="network-details-subtitle-status"></span> 7 <span id="network-details-subtitle-status"></span>
8 <span id="network-details-subtitle-separator"> - </span> 8 <span id="network-details-subtitle-separator"> - </span>
9 <span id="network-details-subtitle-type"></span> 9 <span id="network-details-subtitle-type"></span>
10 </div> 10 </div>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 tab-contents="network-proxy-tab"> 60 tab-contents="network-proxy-tab">
61 <span class="tab-label" i18n-content="proxyTabLabel"></span> 61 <span class="tab-label" i18n-content="proxyTabLabel"></span>
62 <span class="active-tab-label" i18n-content="proxyTabLabel"></span> 62 <span class="active-tab-label" i18n-content="proxyTabLabel"></span>
63 </span> 63 </span>
64 </div> 64 </div>
65 <div id="wifi-network-tab" class="subpages-tab-contents wifi-details"> 65 <div id="wifi-network-tab" class="subpages-tab-contents wifi-details">
66 <section> 66 <section>
67 <table class="option-control-table"> 67 <table class="option-control-table">
68 <tr id="prefer-network"> 68 <tr id="prefer-network">
69 <td> 69 <td>
70 <div class="checkbox"> 70 <div class="checkbox controlled-setting-with-label">
71 <span class="controlled-setting-with-label"> 71 <label>
72 <input id="prefer-network-wifi" type="checkbox"> 72 <input id="prefer-network-wifi" type="checkbox">
73 <span> 73 <span>
74 <label for="prefer-network-wifi" 74 <span i18n-content="inetPreferredNetwork">
75 i18n-content="inetPreferredNetwork"> 75 <span class="controlled-setting-indicator"></span>
76 </label>
77 <span class="controlled-setting-indicator"
78 managed="Priority" for="prefer-network-wifi">
79 </span>
80 </span> 76 </span>
81 </span> 77 </label>
82 </div> 78 </div>
83 </td> 79 </td>
84 </tr> 80 </tr>
85 <tr class="auto-connect-network"> 81 <tr class="auto-connect-network">
86 <td> 82 <td>
87 <div class="checkbox"> 83 <div class="checkbox controlled-setting-with-label">
88 <span class="controlled-setting-with-label"> 84 <label>
89 <input id="auto-connect-network-wifi" type="checkbox"> 85 <input id="auto-connect-network-wifi" type="checkbox">
90 <span> 86 <span>
91 <label for="auto-connect-network-wifi" 87 <span i18n-content="inetAutoConnectNetwork">
92 i18n-content="inetAutoConnectNetwork">
93 </label>
94 <span class="controlled-setting-indicator" 88 <span class="controlled-setting-indicator"
95 managed="AutoConnect" for="auto-connect-network-wifi"> 89 managed="AutoConnect"></span>
96 </span>
97 </span> 90 </span>
98 </span> 91 </label>
99 </div> 92 </div>
100 </td> 93 </td>
101 </tr> 94 </tr>
102 </table> 95 </table>
103 </section> 96 </section>
104 <section> 97 <section>
105 <table id="wifi-settings-table"> 98 <table id="wifi-settings-table">
106 <tr> 99 <tr>
107 <td class="option-name" i18n-content="connectionState"></td> 100 <td class="option-name" i18n-content="connectionState"></td>
108 <td id="wifi-connection-state" class="option-value"></td> 101 <td id="wifi-connection-state" class="option-value"></td>
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 </td> 143 </td>
151 </tr> 144 </tr>
152 </table> 145 </table>
153 </section> 146 </section>
154 </div> 147 </div>
155 <div id="wimax-network-tab" class="subpages-tab-contents wimax-details"> 148 <div id="wimax-network-tab" class="subpages-tab-contents wimax-details">
156 <section> 149 <section>
157 <table class="option-control-table"> 150 <table class="option-control-table">
158 <tr class="auto-connect-network"> 151 <tr class="auto-connect-network">
159 <td> 152 <td>
160 <div class="checkbox"> 153 <div class="checkbox controlled-setting-with-label">
161 <span class="controlled-setting-with-label"> 154 <label>
162 <input id="auto-connect-network-wimax" type="checkbox"> 155 <input id="auto-connect-network-wimax" type="checkbox">
163 <span> 156 <span>
164 <label for="auto-connect-network-wimax" 157 <span i18n-content="inetAutoConnectNetwork"></span>
165 i18n-content="inetAutoConnectNetwork">
166 </label>
167 <span class="controlled-setting-indicator" 158 <span class="controlled-setting-indicator"
168 managed="AutoConnect" for="auto-connect-network-wimax"> 159 managed="AutoConnect"></span>
169 </span>
170 </span> 160 </span>
171 </span> 161 </label>
172 </div> 162 </div>
173 </td> 163 </td>
174 </tr> 164 </tr>
175 </table> 165 </table>
176 </section> 166 </section>
177 <section> 167 <section>
178 <table id="wimax-settings-table"> 168 <table id="wimax-settings-table">
179 <tr> 169 <tr>
180 <td class="option-name" i18n-content="connectionState"></td> 170 <td class="option-name" i18n-content="connectionState"></td>
181 <td id="wimax-connection-state" class="option-value"></td> 171 <td id="wimax-connection-state" class="option-value"></td>
(...skipping 20 matching lines...) Expand all
202 </td> 192 </td>
203 </tr> 193 </tr>
204 </table> 194 </table>
205 </section> 195 </section>
206 </div> 196 </div>
207 <div id="vpn-tab" class="subpages-tab-contents vpn-details"> 197 <div id="vpn-tab" class="subpages-tab-contents vpn-details">
208 <section> 198 <section>
209 <table class="option-control-table"> 199 <table class="option-control-table">
210 <tr class="auto-connect-network"> 200 <tr class="auto-connect-network">
211 <td> 201 <td>
212 <div class="checkbox"> 202 <div class="checkbox controlled-setting-with-label">
213 <span class="controlled-setting-with-label"> 203 <label>
214 <input id="auto-connect-network-vpn" type="checkbox"> 204 <input id="auto-connect-network-vpn" type="checkbox">
215 <span> 205 <span>
216 <label for="auto-connect-network-vpn" 206 <span i18n-content="inetAutoConnectNetwork"></span>
217 i18n-content="inetAutoConnectNetwork">
218 </label>
219 <span class="controlled-setting-indicator" 207 <span class="controlled-setting-indicator"
220 managed="AutoConnect" for="auto-connect-network-vpn"> 208 managed="AutoConnect"></span>
221 </span>
222 </span> 209 </span>
223 </span> 210 </label>
224 </div> 211 </div>
225 </td> 212 </td>
226 </tr> 213 </tr>
227 <tr> 214 <tr>
228 <td class="option-name" i18n-content="inetServiceName"></td> 215 <td class="option-name" i18n-content="inetServiceName"></td>
229 <td id="inet-service-name" class="option-value"></td> 216 <td id="inet-service-name" class="option-value"></td>
230 </tr> 217 </tr>
231 <tr> 218 <tr>
232 <td class="option-name" i18n-content="inetServerHostname"></td> 219 <td class="option-name" i18n-content="inetServerHostname"></td>
233 <td> 220 <td>
234 <input class="option-value" id="inet-server-hostname"></input> 221 <input class="option-value" id="inet-server-hostname"></input>
235 <span class="controlled-setting-indicator" 222 <span class="controlled-setting-indicator" managed="VPN.Host">
236 managed="VPN.Host" for="inet-server-hostname"></span> 223 </span>
237 </td> 224 </td>
238 </tr> 225 </tr>
239 <tr> 226 <tr>
240 <td class="option-name" i18n-content="inetProviderType"></td> 227 <td class="option-name" i18n-content="inetProviderType"></td>
241 <td id="inet-provider-type" class="option-value"></td> 228 <td id="inet-provider-type" class="option-value"></td>
242 </tr> 229 </tr>
243 <tr> 230 <tr>
244 <td class="option-name" i18n-content="inetUsername"></td> 231 <td class="option-name" i18n-content="inetUsername"></td>
245 <td id="inet-username" class="option-value"></td> 232 <td id="inet-username" class="option-value"></td>
246 </tr> 233 </tr>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 <td class="option-name" i18n-content="errorState"></td> 274 <td class="option-name" i18n-content="errorState"></td>
288 <td id="error-state" class="option-value"></td> 275 <td id="error-state" class="option-value"></td>
289 </tr> 276 </tr>
290 <tr class="gsm-only apn-list-view"> 277 <tr class="gsm-only apn-list-view">
291 <td class="option-name" i18n-content="cellularApnLabel"></td> 278 <td class="option-name" i18n-content="cellularApnLabel"></td>
292 <td id="cellular-apn-label" class="option-value"> 279 <td id="cellular-apn-label" class="option-value">
293 <select id="select-apn"> 280 <select id="select-apn">
294 <option value="-1" i18n-content="cellularApnOther"> 281 <option value="-1" i18n-content="cellularApnOther">
295 </option> 282 </option>
296 </select> 283 </select>
297 <span class="controlled-setting-indicator" data="providerApnList" 284 <span class="controlled-setting-indicator" data="providerApnList">
298 for="select-apn"></span> 285 </span>
299 </td> 286 </td>
300 </tr> 287 </tr>
301 <tr class="gsm-only apn-details-view"> 288 <tr class="gsm-only apn-details-view">
302 <td class="option-name" i18n-content="cellularApnLabel"></td> 289 <td class="option-name" i18n-content="cellularApnLabel"></td>
303 <td id="cellular-apn-label" class="option-value"> 290 <td id="cellular-apn-label" class="option-value">
304 <input id="cellular-apn" type="text"> 291 <input id="cellular-apn" type="text">
305 </td> 292 </td>
306 </tr> 293 </tr>
307 <tr class="gsm-only apn-details-view"> 294 <tr class="gsm-only apn-details-view">
308 <td class="option-name" i18n-content="cellularApnUsername"></td> 295 <td class="option-name" i18n-content="cellularApnUsername"></td>
(...skipping 13 matching lines...) Expand all
322 <button id="cellular-apn-use-default" 309 <button id="cellular-apn-use-default"
323 i18n-content="cellularApnUseDefault"></button> 310 i18n-content="cellularApnUseDefault"></button>
324 <button id="cellular-apn-set" 311 <button id="cellular-apn-set"
325 i18n-content="cellularApnSet"></button> 312 i18n-content="cellularApnSet"></button>
326 <button id="cellular-apn-cancel" 313 <button id="cellular-apn-cancel"
327 i18n-content="cellularApnCancel"></button> 314 i18n-content="cellularApnCancel"></button>
328 </td> 315 </td>
329 </tr> 316 </tr>
330 <tr> 317 <tr>
331 <td colspan="2"> 318 <td colspan="2">
332 <div class="checkbox"> 319 <div class="checkbox controlled-setting-with-label">
333 <span class="controlled-setting-with-label"> 320 <label>
334 <input id="auto-connect-network-cellular" type="checkbox"> 321 <input id="auto-connect-network-cellular" type="checkbox">
335 <span> 322 <span>
336 <label for="auto-connect-network-cellular" 323 <span i18n-content="inetAutoConnectNetwork"></span>
337 i18n-content="inetAutoConnectNetwork">
338 </label>
339 <span class="controlled-setting-indicator" 324 <span class="controlled-setting-indicator"
340 managed="AutoConnect" 325 managed="AutoConnect"></span>
341 for="auto-connect-network-cellular">
342 </span>
343 </span> 326 </span>
344 </span> 327 </label>
345 </div> 328 </div>
346 </td> 329 </td>
347 </tr> 330 </tr>
348 </table> 331 </table>
349 </section> 332 </section>
350 </div> 333 </div>
351 <div id="cellular-device-tab" class="subpages-tab-contents 334 <div id="cellular-device-tab" class="subpages-tab-contents
352 cellular-details"> 335 cellular-details">
353 <section id="cellular-device-options"> 336 <section id="cellular-device-options">
354 <table class="option-control-table"> 337 <table class="option-control-table">
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 <td class="option-name" i18n-content="connectionState"></td> 393 <td class="option-name" i18n-content="connectionState"></td>
411 <td id="connection-state" class="option-value"></td> 394 <td id="connection-state" class="option-value"></td>
412 </tr> 395 </tr>
413 <tr id="hardware-address-row"> 396 <tr id="hardware-address-row">
414 <td class="option-name" i18n-content="hardwareAddress"></td> 397 <td class="option-name" i18n-content="hardwareAddress"></td>
415 <td id="hardware-address" class="option-value"></td> 398 <td id="hardware-address" class="option-value"></td>
416 </tr> 399 </tr>
417 </table> 400 </table>
418 </section> 401 </section>
419 <section id="ipconfig-section"> 402 <section id="ipconfig-section">
420 <div id="ip-automatic-configuration" class="checkbox"> 403 <div id="ip-automatic-configuration"
421 <span class="controlled-setting-with-label"> 404 class="checkbox controlled-setting-with-label">
405 <label>
422 <input id="ip-automatic-configuration-checkbox" 406 <input id="ip-automatic-configuration-checkbox"
423 type="checkbox"> 407 type="checkbox">
424 <span> 408 <span>
425 <label for="ip-automatic-configuration-checkbox" 409 <span i18n-content="ipAutomaticConfiguration"></span>
426 i18n-content="ipAutomaticConfiguration"> 410 <span class="controlled-setting-indicator" data="ipconfigDHCP">
427 </label>
428 <span class="controlled-setting-indicator" data="ipconfigDHCP"
429 for="ip-automatic-configuration">
430 </span> 411 </span>
431 </span> 412 </span>
432 </span> 413 </label>
433 </div> 414 </div>
434 <div> 415 <div>
435 <table id="ip-address-settings"> 416 <table id="ip-address-settings">
436 <tr> 417 <tr>
437 <td class="spacer" width="14px"></td> 418 <td class="spacer" width="14px"></td>
438 <td class="option-name" i18n-content="inetAddress"></td> 419 <td class="option-name" i18n-content="inetAddress"></td>
439 <td><div id="ip-address"></div></td> 420 <td><div id="ip-address"></div></td>
440 </tr> 421 </tr>
441 <tr> 422 <tr>
442 <td class="spacer" width="14px"></td> 423 <td class="spacer" width="14px"></td>
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 </div> 483 </div>
503 </td> 484 </td>
504 </tr> 485 </tr>
505 </table> 486 </table>
506 </section> 487 </section>
507 </div> 488 </div>
508 <div id="security-tab" 489 <div id="security-tab"
509 class="subpages-tab-contents cellular-details gsm-only"> 490 class="subpages-tab-contents cellular-details gsm-only">
510 <div id="cellular-security-options"> 491 <div id="cellular-security-options">
511 <section> 492 <section>
512 <div id="sim-pin-lock" class="checkbox"> 493 <div id="sim-pin-lock" class="checkbox controlled-setting-with-label">
513 <span class="controlled-setting-with-label"> 494 <label>
514 <input id="sim-card-lock-enabled" type="checkbox"> 495 <input id="sim-card-lock-enabled" type="checkbox">
515 <span> 496 <span>
516 <label for="sim-card-lock-enabled" i18n-content="lockSimCard"> 497 <span i18n-content="lockSimCard"></span>
517 </label> 498 <span class="controlled-setting-indicator"></span>
518 <span class="controlled-setting-indicator"
519 data="simCardLockEnabled" for="sim-card-lock-enabled">
520 </span>
521 </span> 499 </span>
522 </span> 500 </label>
523 </div> 501 </div>
524 </section> 502 </section>
525 <section> 503 <section>
526 <div id="change-pin-area"> 504 <div id="change-pin-area">
527 <button id="change-pin" i18n-content="changePinButton"></button> 505 <button id="change-pin" i18n-content="changePinButton"></button>
528 <span class="controlled-setting-indicator" data="simCardLockEnabled" 506 <span class="controlled-setting-indicator"
529 for="change-pin"></span> 507 data="simCardLockEnabled"></span>
530 </div> 508 </div>
531 </section> 509 </section>
532 </div> 510 </div>
533 </div> 511 </div>
534 <div id="network-proxy-tab" class="subpages-tab-contents"> 512 <div id="network-proxy-tab" class="subpages-tab-contents">
535 <section> 513 <section>
536 <div id="network-proxy-info-banner" hidden> 514 <div id="network-proxy-info-banner" hidden>
537 <span id="banner-text" class="page-banner-text"></span> 515 <span id="banner-text" class="page-banner-text"></span>
538 </div> 516 </div>
539 <div class="radio"> 517 <div class="radio">
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 </button> 671 </button>
694 <button id="details-internet-configure" i18n-content="configureButton"> 672 <button id="details-internet-configure" i18n-content="configureButton">
695 </button> 673 </button>
696 <button id="activate-details" i18n-content="activateButton"></button> 674 <button id="activate-details" i18n-content="activateButton"></button>
697 <button id="buyplan-details" i18n-content="buyplanButton"></button> 675 <button id="buyplan-details" i18n-content="buyplanButton"></button>
698 <button id="view-account-details" i18n-content="viewAccountButton"> 676 <button id="view-account-details" i18n-content="viewAccountButton">
699 </button> 677 </button>
700 </div> 678 </div>
701 </div> 679 </div>
702 </div> 680 </div>
OLDNEW
« 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