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

Side by Side Diff: chrome/browser/resources/collected_cookies.html

Issue 8341081: Add icon-visibility attribute to cr.ui.Tree. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use simple regex. Created 9 years, 1 month 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 3
4 <head> 4 <head>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title i18n-content="title"></title> 6 <title i18n-content="title"></title>
7 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 7 <link rel="stylesheet" href="chrome://resources/css/tree.css">
8 <link rel="stylesheet" href="collected_cookies.css"> 8 <link rel="stylesheet" href="collected_cookies.css">
9 </head> 9 </head>
10 10
11 <script src="chrome://resources/css/tree.css.js"></script> 11 <script src="chrome://resources/css/tree.css.js"></script>
12 12
13 <script src="chrome://resources/js/cr.js"></script> 13 <script src="chrome://resources/js/cr.js"></script>
14 <script src="chrome://resources/js/cr/ui.js"></script> 14 <script src="chrome://resources/js/cr/ui.js"></script>
15 <script src="chrome://resources/js/cr/ui/tree.js"></script> 15 <script src="chrome://resources/js/cr/ui/tree.js"></script>
16 <script src="chrome://resources/js/util.js"></script> 16 <script src="chrome://resources/js/util.js"></script>
17 <script src="cookies_tree.js"></script> 17 <script src="cookies_tree.js"></script>
18 <script src="collected_cookies.js"></script> 18 <script src="collected_cookies.js"></script>
19 19
20 <body> 20 <body>
21 21
22 <div id="info-banner" hidden></div> 22 <div id="info-banner" hidden></div>
23 23
24 <p i18n-content="allowedCookies"></p> 24 <p i18n-content="allowedCookies"></p>
25 <tree id="allowed-cookies" class="cookies-tree"></tree> 25 <tree id="allowed-cookies" class="cookies-tree" icon-visibility="parent"></tree>
26 <button id="block-button" i18n-content="blockButton"></button> 26 <button id="block-button" i18n-content="blockButton"></button>
27 27
28 <p i18n-content="blockedCookies"></p> 28 <p i18n-content="blockedCookies"></p>
29 <tree id="blocked-cookies" class="cookies-tree"></tree> 29 <tree id="blocked-cookies" class="cookies-tree" icon-visibility="parent"></tree>
30 <button id="allow-button" i18n-content="allowButton"></button> 30 <button id="allow-button" i18n-content="allowButton"></button>
31 <button id="allow-this-session-button" 31 <button id="allow-this-session-button"
32 i18n-content="allowThisSessionButton"></button> 32 i18n-content="allowThisSessionButton"></button>
33 <button id="close-button" i18n-content="closeButton"></button> 33 <button id="close-button" i18n-content="closeButton"></button>
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/certificate_viewer.html ('k') | chrome/browser/resources/options/certificate_manager.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698