- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / cookies / manager.html
1 <html>
2 <head>
3 <style>
4 table {
5   border-collapse:collapse;
6 }
7
8 td {
9   border: 1px solid black;
10   padding-left: 5px;
11 }
12
13 td.button {
14   border: none;
15 }
16
17 td.cookie_count {
18   text-align: right;
19 }
20
21 </style>
22 <script src="manager.js"></script>
23 </head>
24 <body>
25   <h2>Cookies! ... Nom Nom Nom...</h2>
26   <button id="remove_button">DELETE ALL!</button>
27   <div id="filter_div">
28     Filter: <input id="filter" type="text">
29     <button>x</button>
30   </div>
31   <br />
32   <div id="summary_div">
33     Showing <span id="filter_count"></span> of <span id="total_count"></span> cookie domains.
34     <span id="delete_all_button"></span>
35   </div>
36   <br />
37   <table id="cookies">
38     <tr class="header">
39       <th>Name</th>
40       <th>#Cookies</th>
41     </tr>
42   </body>
43 </html>