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

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

Issue 3177023: Implement Password Exceptions Tab (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: sync Created 10 years, 4 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
OLDNEW
1 <div class="page hidden" id="passwordsExceptionsPage"> 1 <div class="page hidden" id="passwordsExceptionsPage">
2 <h1> 2 <h1>
3 <span i18n-content="personalPage"></span> 3 <span i18n-content="personalPage"></span>
4 &gt; 4 &gt;
5 <span i18n-content="savedPasswordsExceptionsTitle"></span> 5 <span i18n-content="savedPasswordsExceptionsTitle"></span>
6 </h1> 6 </h1>
7 7
8 <!-- Navigation tabs --> 8 <!-- Navigation tabs -->
9 <div class="subpages-nav-tabs"> 9 <div class="subpages-nav-tabs">
10 <span i18n-content="passwordsTabTitle" id="passwords-nav-tab" 10 <span i18n-content="passwordsTabTitle" id="passwords-nav-tab"
11 class="inactive-tab" tab-contents="passwordsTab"></span> 11 class="inactive-tab" tab-contents="passwordsTab"></span>
12 <span i18n-content="passwordsExceptionsTabTitle" 12 <span i18n-content="passwordExceptionsTabTitle"
13 id="passwords-exceptions-nav-tab" 13 id="password-exceptions-nav-tab"
14 class="inactive-tab" tab-contents="passwordsExceptionsTab"></span> 14 class="inactive-tab" tab-contents="passwordExceptionsTab"></span>
15 </div> 15 </div>
16 16
17 <!-- Passwords tab contents --> 17 <!-- Passwords tab contents -->
18 <div id="passwordsTab" class="subpages-tab-contents"> 18 <div id="passwordsTab" class="subpages-tab-contents">
19 <section> 19 <section>
20 <div id="passwordsArea"> 20 <div id="passwordsArea">
21 <list id="autofillableLoginsList"></list> 21 <list id="savedPasswordsList"></list>
22 </div> 22 </div>
23 </section> 23 </section>
24 </div> 24 </div>
25 25
26 <!-- Exceptions tab contents --> 26 <!-- Exceptions tab contents -->
27 <div id="passwordsExceptionsTab" class="subpages-tab-contents"> 27 <div id="passwordExceptionsTab" class="subpages-tab-contents">
28 <section> 28 <section>
29 <div id="passwordsExceptionsArea"> 29 <div id="passwordExceptionsArea">
30 <list id="passwordExceptionsList"></list>
30 </div> 31 </div>
31 </section> 32 </section>
32 </div> 33 </div>
33 </div> 34 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options.html ('k') | chrome/browser/resources/options/passwords_exceptions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698