OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <html i18n-values="dir:textdirection;"> | |
3 | |
4 <head> | |
5 <meta charset="utf-8"> | |
6 <title i18n-content="title"></title> | |
7 <link rel="stylesheet" href="chrome://resources/css/tree.css"> | |
8 <link rel="stylesheet" href="collected_cookies.css"> | |
9 </head> | |
10 | |
11 <script src="chrome://resources/css/tree.css.js"></script> | |
12 | |
13 <script src="chrome://resources/js/cr.js"></script> | |
14 <script src="chrome://resources/js/cr/ui.js"></script> | |
15 <script src="chrome://resources/js/cr/ui/tree.js"></script> | |
16 <script src="chrome://resources/js/util.js"></script> | |
17 <script src="cookies_tree.js"></script> | |
18 <script src="collected_cookies.js"></script> | |
19 | |
20 <body oncontextmenu="return false;"> | |
arv (Not doing code reviews)
2011/03/10 18:03:00
move to script
arv (Not doing code reviews)
2011/03/10 18:03:00
Why do you want to disable the context menu?
xiyuan
2011/03/10 19:23:59
Done.
xiyuan
2011/03/10 19:23:59
This webui is in a constrained dialog. We don't wa
| |
21 | |
22 <div id="info-banner" hidden></div> | |
23 | |
24 <p i18n-content="allowedCookies"></p> | |
25 <tree id="allowed-cookies" class="cookies-tree"></tree> | |
26 <button id="block-button" i18n-content="blockButton"></button> | |
27 | |
28 <p i18n-content="blockedCookies"></p> | |
29 <tree id="blocked-cookies" class="cookies-tree"></tree> | |
30 <button id="allow-button" i18n-content="allowButton"></button> | |
31 <button id="allow-this-session-button" | |
32 i18n-content="allowThisSessionButton"></button> | |
33 <button id="close-button" i18n-content="closeButton"></button> | |
34 </body> | |
35 </html> | |
OLD | NEW |