| OLD | NEW |
| 1 <div id="passwordManager" class="page hidden"> | 1 <div id="password-manager" class="page hidden"> |
| 2 <h1 i18n-content="savedPasswordsTitle"></h1> | 2 <h1 i18n-content="passwordsTitle"></h1> |
| 3 | 3 <div id="saved-passwords"> |
| 4 <!-- Navigation tabs --> | 4 <div class="list-title" i18n-content="savedPasswordsTitle"></div> |
| 5 <div class="subpages-nav-tabs"> | 5 <list id="saved-passwords-list" class="passwords-list"></list> |
| 6 <span id="passwords-nav-tab" class="inactive-tab" | |
| 7 tab-contents="passwordsTab"> | |
| 8 <span class="inactive-tab-label" i18n-content="passwordsTabTitle"></span> | |
| 9 <span class="active-tab-label" i18n-content="passwordsTabTitle"></span> | |
| 10 </span> | |
| 11 <span id="password-exceptions-nav-tab" class="inactive-tab" | |
| 12 tab-contents="passwordExceptionsTab"> | |
| 13 <span class="inactive-tab-label" | |
| 14 i18n-content="passwordExceptionsTabTitle"></span> | |
| 15 <span class="active-tab-label" | |
| 16 i18n-content="passwordExceptionsTabTitle"></span> | |
| 17 </span> | |
| 18 </div> | 6 </div> |
| 19 | 7 <div id="password-exceptions"> |
| 20 <!-- Passwords tab contents --> | 8 <div class="list-title" i18n-content="passwordExceptionsTitle"></div> |
| 21 <div id="passwordsTab" class="subpages-tab-contents"> | 9 <list id="password-exceptions-list" class="passwords-list"></list> |
| 22 <section> | |
| 23 <div id="passwordsArea"> | |
| 24 <list id="savedPasswordsList"></list> | |
| 25 </div> | |
| 26 </section> | |
| 27 </div> | |
| 28 | |
| 29 <!-- Exceptions tab contents --> | |
| 30 <div id="passwordExceptionsTab" class="subpages-tab-contents"> | |
| 31 <section> | |
| 32 <div id="passwordExceptionsArea"> | |
| 33 <list id="passwordExceptionsList"></list> | |
| 34 </div> | |
| 35 </section> | |
| 36 </div> | 10 </div> |
| 37 </div> | 11 </div> |
| OLD | NEW |