OLD | NEW |
---|---|
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>drive-internals</title> | 4 <title>drive-internals</title> |
5 <meta charset="utf-8"> | 5 <meta charset="utf-8"> |
6 <link rel="stylesheet" href="drive_internals.css"> | |
6 <script src="chrome://resources/js/util.js"></script> | 7 <script src="chrome://resources/js/util.js"></script> |
7 <script src="chrome://drive-internals/drive_internals.js"></script> | 8 <script src="chrome://drive-internals/drive_internals.js"></script> |
8 </head> | 9 </head> |
9 <body> | 10 <body> |
10 <h1>Drive Internals</h1> | 11 <h1>Drive Internals</h1> |
11 <h2>Authentication Status</h2> | 12 <h2>Authentication Status</h2> |
13 <ul> | |
14 <li>Has refresh token: <span id='has-refresh-token'></span></li> | |
15 <li>Has access token: <span id='has-access-token'></span></li> | |
16 </ul> | |
17 <h2>GCache Contents</h2> | |
12 <table> | 18 <table> |
James Hawkins
2012/07/26 19:30:41
You want to remove this table while you're at it?
satorux1
2012/07/26 20:29:23
I'd keep this for now.
| |
13 <tbody> | 19 <tbody id='gcache-contents'></tbody> |
14 <tr><td>Has refresh token</td><td id='has-refresh-token'></td></tr> | |
15 <tr><td>Has access token</td><td id='has-access-token'></td></tr> | |
16 </tbody> | |
17 </table> | 20 </table> |
18 </body> | 21 </body> |
19 </html> | 22 </html> |
OLD | NEW |