| OLD | NEW |
| 1 <div id="accountsPage" class="page" hidden> | 1 <div id="accountsPage" class="page" hidden> |
| 2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
| 3 <h1 i18n-content="accountsPage"></h1> | 3 <h1 i18n-content="accountsPage"></h1> |
| 4 <div class="content-area"> | 4 <div class="content-area"> |
| 5 <div class="option"> | 5 <div class="option"> |
| 6 <div id="ownerOnlyWarning" hidden> | 6 <div id="ownerOnlyWarning" hidden> |
| 7 <span i18n-content="owner_only"></span> | 7 <span i18n-content="owner_only"></span> |
| 8 <span i18n-content="ownerUserId"></span> | 8 <span i18n-content="ownerUserId"></span> |
| 9 </div> | 9 </div> |
| 10 <table class="option-control-table"> | 10 <table class="option-control-table"> |
| 11 <tr> | 11 <tr> |
| 12 <td class="option-name"> | 12 <td class="option-name"> |
| 13 <div class="checkbox"> | 13 <div class="checkbox"> |
| 14 <label> | 14 <label> |
| 15 <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI" | 15 <input id="allowBwsiCheck" type="checkbox" |
| 16 type="checkbox"> | 16 metric="Options_GuestBrowsing" |
| 17 pref="cros.accounts.allowBWSI"> |
| 17 <span i18n-content="allow_BWSI"></span> | 18 <span i18n-content="allow_BWSI"></span> |
| 18 </label> | 19 </label> |
| 19 </div> | 20 </div> |
| 20 </td> | 21 </td> |
| 21 </tr> | 22 </tr> |
| 22 <tr> | 23 <tr> |
| 23 <td class="option-name"> | 24 <td class="option-name"> |
| 24 <div class="checkbox"> | 25 <div class="checkbox"> |
| 25 <label> | 26 <label> |
| 26 <input id="allowSupervisedCheck" | 27 <input id="allowSupervisedCheck" type="checkbox" |
| 27 pref="cros.accounts.supervisedUsersEnabled" type="checkbox"> | 28 metric="Options_SupervisedUsers" |
| 29 pref="cros.accounts.supervisedUsersEnabled"> |
| 28 <span i18n-content="allow_supervised_users"></span> | 30 <span i18n-content="allow_supervised_users"></span> |
| 29 </label> | 31 </label> |
| 30 </div> | 32 </div> |
| 31 </td> | 33 </td> |
| 32 </tr> | 34 </tr> |
| 33 <tr> | 35 <tr> |
| 34 <td class="option-name"> | 36 <td class="option-name"> |
| 35 <div class="checkbox"> | 37 <div class="checkbox"> |
| 36 <label> | 38 <label> |
| 37 <input id="showUserNamesCheck" | 39 <input id="showUserNamesCheck" type="checkbox" |
| 38 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox"> | 40 metric="Options_ShowUserNamesOnSignin" |
| 41 pref="cros.accounts.showUserNamesOnSignIn"> |
| 39 <span i18n-content="show_user_on_signin"></span> | 42 <span i18n-content="show_user_on_signin"></span> |
| 40 </label> | 43 </label> |
| 41 </div> | 44 </div> |
| 42 </td> | 45 </td> |
| 43 </tr> | 46 </tr> |
| 44 <tr> | 47 <tr> |
| 45 <td class="option-name"> | 48 <td class="option-name"> |
| 46 <div class="checkbox"> | 49 <div class="checkbox"> |
| 47 <label> | 50 <label> |
| 48 <input id="useWhitelistCheck" pref="cros.accounts.allowGuest" | 51 <input id="useWhitelistCheck" type="checkbox" |
| 49 type="checkbox" inverted_pref> | 52 metric="Options_AllowAllUsers" |
| 53 pref="cros.accounts.allowGuest" |
| 54 inverted_pref> |
| 50 <span i18n-content="use_whitelist"></span> | 55 <span i18n-content="use_whitelist"></span> |
| 51 </label> | 56 </label> |
| 52 </div> | 57 </div> |
| 53 </td> | 58 </td> |
| 54 </tr> | 59 </tr> |
| 55 <tr><td> </td></tr> | 60 <tr><td> </td></tr> |
| 56 <tr><td> | 61 <tr><td> |
| 57 <table class="user-list-table"> | 62 <table class="user-list-table"> |
| 58 <tr><td> | 63 <tr><td> |
| 59 <list id="userList"></list> | 64 <list id="userList"></list> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 71 </div> | 76 </div> |
| 72 </div> | 77 </div> |
| 73 <div class="action-area"> | 78 <div class="action-area"> |
| 74 <div class="button-strip"> | 79 <div class="button-strip"> |
| 75 <button id="accounts-options-overlay-confirm" class="default-button" | 80 <button id="accounts-options-overlay-confirm" class="default-button" |
| 76 i18n-content="done"> | 81 i18n-content="done"> |
| 77 </button> | 82 </button> |
| 78 </div> | 83 </div> |
| 79 </div> | 84 </div> |
| 80 </div> | 85 </div> |
| OLD | NEW |