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

Side by Side Diff: chrome/browser/resources/options/password_manager.html

Issue 5935003: DOMUI: Implement new-style password manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Selection transitions. Created 10 years 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="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="passwords-list-title" i18n-content="savedPasswordsTitle">
5 <div class="subpages-nav-tabs"> 5 </div>
6 <span id="passwords-nav-tab" class="inactive-tab" 6 <list id="saved-passwords-list" class="passwords-list"></list>
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> 7 </div>
19 8 <div id="password-exceptions">
20 <!-- Passwords tab contents --> 9 <div class="passwords-list-title" i18n-content="passwordExceptionsTitle">
21 <div id="passwordsTab" class="subpages-tab-contents"> 10 </div>
22 <section> 11 <list id="password-exceptions-list" class="passwords-list"></list>
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> 12 </div>
37 </div> 13 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/password_manager.css ('k') | chrome/browser/resources/options/password_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698