Chromium Code Reviews| Index: chrome/browser/resources/collected_cookies.html |
| diff --git a/chrome/browser/resources/collected_cookies.html b/chrome/browser/resources/collected_cookies.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4ffdf1a8611191dc2a59f5271ebe837be9c7b60a |
| --- /dev/null |
| +++ b/chrome/browser/resources/collected_cookies.html |
| @@ -0,0 +1,37 @@ |
| +<!DOCTYPE HTML> |
| +<html i18n-values="dir:textdirection;"> |
| + |
| +<head> |
| +<meta charset="utf-8"> |
| +<title i18n-content="title"></title> |
| +<link rel="stylesheet" href="chrome://resources/css/tree.css"> |
| +<link rel="stylesheet" href="collected_cookies.css"> |
| +</head> |
| + |
| +<script src="chrome://resources/css/tree.css.js"></script> |
| + |
| +<script src="chrome://resources/js/cr.js"></script> |
| +<script src="chrome://resources/js/cr/ui.js"></script> |
| +<script src="chrome://resources/js/cr/ui/tree.js"></script> |
| +<script src="chrome://resources/js/util.js"></script> |
| +<script src="cookies_tree.js"></script> |
| +<script src="collected_cookies.js"></script> |
| + |
| +<body> |
| + |
| +<div id="info-banner" class="hidden"> |
|
arv (Not doing code reviews)
2011/03/09 18:42:47
<hx> maybe?
xiyuan
2011/03/09 21:33:31
<hx>'s before and after space seems to be too much
arv (Not doing code reviews)
2011/03/10 18:03:00
That should be fixed with css margins.
In general
|
| + <span id="info-text"></span> |
|
arv (Not doing code reviews)
2011/03/09 18:42:47
Do you need the span here?
xiyuan
2011/03/09 21:33:31
Removed.
|
| +</div> |
| + |
| +<div i18n-content="allowedCookies"></div> |
|
arv (Not doing code reviews)
2011/03/09 18:42:47
p, hx?
xiyuan
2011/03/09 21:33:31
<p> used.
|
| +<tree id="allowedCookies" class="cookies-tree"></tree> |
|
arv (Not doing code reviews)
2011/03/09 18:42:47
id="allowed-cookies"
xiyuan
2011/03/09 21:33:31
Done.
|
| +<button id="blockButton" i18n-content="blockButton"></button> |
| + |
| +<div i18n-content="blockedCookies"></div> |
| +<tree id="blockedCookies" class="cookies-tree"></tree> |
| +<button id="allowButton" i18n-content="allowButton"></button> |
| +<button id="allowThisSessionButton" |
| + i18n-content="allowThisSessionButton"></button> |
| +<button onclick="closeDialog();">Close Me</button> |
|
arv (Not doing code reviews)
2011/03/09 18:42:47
i18n?
arv (Not doing code reviews)
2011/03/09 18:42:47
move this onclick to js as well?
xiyuan
2011/03/09 21:33:31
Oops. Forgot to update this. Fixed now.
xiyuan
2011/03/09 21:33:31
Done.
|
| +</body> |
| +</html> |