Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
| 4 | 4 |
| 5 <div id="oauth-enrollment" class="step no-logo hidden" hidden> | 5 <div id="oauth-enrollment" class="step no-logo hidden" hidden> |
| 6 <div id="oauth-enroll-step-contents"> | 6 <div id="oauth-enroll-step-contents"> |
| 7 <div id="oauth-enroll-step-signin"> | 7 <div id="oauth-enroll-step-signin"> |
| 8 <webview id="oauth-enroll-auth-view" name="oauth-enroll-auth-view"> | 8 <webview id="oauth-enroll-auth-view" name="oauth-enroll-auth-view"> |
| 9 </webview> | 9 </webview> |
| 10 </div> | 10 </div> |
| 11 <div id="oauth-enroll-step-working"> | |
| 12 <throbber-notice id="oauth-enroll-working-card" | |
|
xiyuan
2016/09/16 19:45:15
Get rid of attribute "id" since it is not use. If
kumarniranjan
2016/09/16 20:53:40
Done.
| |
| 13 i18n-values="text:oauthEnrollWorking"> | |
| 14 </throbber-notice> | |
| 15 </div> | |
| 11 <div id="oauth-enroll-step-error" role="alert"> | 16 <div id="oauth-enroll-step-error" role="alert"> |
| 12 <notification-card id="oauth-enroll-error-card" type="fail" | 17 <notification-card id="oauth-enroll-error-card" type="fail" |
| 13 i18n-values="button-label:oauthEnrollRetry"> | 18 i18n-values="button-label:oauthEnrollRetry"> |
| 14 </notification-card> | 19 </notification-card> |
| 15 </div> | 20 </div> |
| 16 <div id="oauth-enroll-step-success" role="alert"> | 21 <div id="oauth-enroll-step-success" role="alert"> |
| 17 <notification-card id="oauth-enroll-success-card" type="success" | 22 <notification-card id="oauth-enroll-success-card" type="success" |
| 18 i18n-values="button-label:oauthEnrollDone" | 23 i18n-values="button-label:oauthEnrollDone" |
| 19 i18n-content="oauthEnrollSuccess"> | 24 i18n-content="oauthEnrollSuccess"> |
| 20 </notification-card> | 25 </notification-card> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 59 <notification-card id="oauth-enroll-attribute-prompt-error-card" | 64 <notification-card id="oauth-enroll-attribute-prompt-error-card" |
| 60 type="fail" i18n-values="button-label:oauthEnrollDone"> | 65 type="fail" i18n-values="button-label:oauthEnrollDone"> |
| 61 </notification-card> | 66 </notification-card> |
| 62 </div> | 67 </div> |
| 63 </div> | 68 </div> |
| 64 <div id="oauth-saml-notice-container"> | 69 <div id="oauth-saml-notice-container"> |
| 65 <span id="oauth-saml-notice-message"></span> | 70 <span id="oauth-saml-notice-message"></span> |
| 66 </div> | 71 </div> |
| 67 <navigation-bar id="oauth-enroll-navigation"></navigation-bar> | 72 <navigation-bar id="oauth-enroll-navigation"></navigation-bar> |
| 68 </div> | 73 </div> |
| OLD | NEW |