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

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

Issue 209143002: Added shortcut for NW config screen in kiosk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 <div id="error-message" class="step hidden show-offline-error"> 1 <div id="error-message" class="step hidden show-offline-error">
2 <div class="step-contents"> 2 <div class="step-contents">
3 <div class="error-header"> 3 <div class="error-header">
4 <img alt class="error-icon" src="chrome://theme/IDR_ERROR_NETWORK_OFFLINE" > 4 <img alt class="error-icon" src="chrome://theme/IDR_ERROR_NETWORK_OFFLINE" >
5 <div id="captive-portal-title" i18n-content="captivePortalTitle" 5 <div id="captive-portal-title" i18n-content="captivePortalTitle"
6 class="error-title 6 class="error-title
7 show-with-error-state-portal 7 show-with-error-state-portal
8 show-with-error-state-offline"></div> 8 show-with-error-state-offline"></div>
9 <div id="login-error-title" i18n-content="loginErrorTitle" 9 <div id="login-error-title" i18n-content="loginErrorTitle"
10 class="error-title 10 class="error-title
11 show-with-error-state-proxy 11 show-with-error-state-proxy
12 show-with-error-state-auth-ext-timeout 12 show-with-error-state-auth-ext-timeout
13 show-with-ui-state-local-state-error"> 13 show-with-ui-state-local-state-error">
14 </div> 14 </div>
15 <div id="kiosk-online-title" i18n-content="kioskOnlineTitle"
16 class="error-title
17 show-with-error-state-kiosk-online"></div>
15 </div> 18 </div>
16 <div class="error-body"> 19 <div class="error-body">
20 <div id="kiosk-online-message-body"
21 class="error-message-paragraph
22 show-with-error-state-kiosk-online">
23 <span id="show-with-error-state-kiosk-online"
xiyuan 2014/03/25 05:21:19 "id" not used and its value looks more like a clas
zel 2014/03/25 22:26:32 Done.
24 i18n-content="kioskOnlineMessageBody"
25 class="show-with-error-state-kiosk-online"></span>
26 </div>
17 <div id="offline-message-body" 27 <div id="offline-message-body"
18 class="error-message-paragraph 28 class="error-message-paragraph
19 show-with-error-state-offline 29 show-with-error-state-offline
20 show-with-error-state-auth-ext-timeout"> 30 show-with-error-state-auth-ext-timeout">
21 <span id="update-offline-message-text" 31 <span id="update-offline-message-text"
22 i18n-content="updateOfflineMessageBody" 32 i18n-content="updateOfflineMessageBody"
23 class="show-with-ui-state-update"></span> 33 class="show-with-ui-state-update"></span>
24 <span id="signin-offline-message-text" 34 <span id="signin-offline-message-text"
25 i18n-content="signinOfflineMessageBody" 35 i18n-content="signinOfflineMessageBody"
26 class="show-with-ui-state-signin 36 class="show-with-ui-state-signin
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 show-with-ui-state-signin 78 show-with-ui-state-signin
69 show-with-ui-state-locally-managed 79 show-with-ui-state-locally-managed
70 show-with-ui-state-kiosk-mode 80 show-with-ui-state-kiosk-mode
71 show-with-ui-state-auto-enrollment-error"> 81 show-with-ui-state-auto-enrollment-error">
72 <div id="offline-network-control" class="error-message-paragraph"> 82 <div id="offline-network-control" class="error-message-paragraph">
73 <label for="offline-networks-list-dropdown" 83 <label for="offline-networks-list-dropdown"
74 i18n-content="selectNetwork" 84 i18n-content="selectNetwork"
75 class="offline-network-list-label 85 class="offline-network-list-label
76 show-with-error-state-offline 86 show-with-error-state-offline
77 show-with-error-state-proxy 87 show-with-error-state-proxy
78 show-with-error-state-auth-timeout"></label> 88 show-with-error-state-auth-timeout
89 show-with-error-state-kiosk-online"></label>
79 <label for="offline-networks-list-dropdown" 90 <label for="offline-networks-list-dropdown"
80 i18n-content="selectAnotherNetwork" 91 i18n-content="selectAnotherNetwork"
81 class="offline-network-list-label 92 class="offline-network-list-label
82 show-with-error-state-portal"> 93 show-with-error-state-portal">
83 </label> 94 </label>
84 <div class="menu-area"> 95 <div class="menu-area">
85 <div id="offline-networks-list" class="menu-control"></div> 96 <div id="offline-networks-list" class="menu-control"></div>
86 </div> 97 </div>
87 </div> 98 </div>
88 </div> 99 </div>
(...skipping 11 matching lines...) Expand all
100 <div id="error-offline-login" 111 <div id="error-offline-login"
101 class="error-message-paragraph offline-login"></div> 112 class="error-message-paragraph offline-login"></div>
102 <div id="connecting-indicator" 113 <div id="connecting-indicator"
103 class="connecting-indicator error-message-paragraph"></div> 114 class="connecting-indicator error-message-paragraph"></div>
104 </div> 115 </div>
105 </div> 116 </div>
106 <div class="error-controls"> 117 <div class="error-controls">
107 <div id="error-message-controls" class="step-controls"></div> 118 <div id="error-message-controls" class="step-controls"></div>
108 </div> 119 </div>
109 </div> 120 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698