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 <link rel="stylesheet" href="drive_internals.css"> |
7 <script src="chrome://resources/js/util.js"></script> | 7 <script src="chrome://resources/js/util.js"></script> |
8 <script src="chrome://drive-internals/drive_internals.js"></script> | 8 <script src="chrome://drive-internals/drive_internals.js"></script> |
9 </head> | 9 </head> |
10 <body> | 10 <body> |
11 <h1>Drive Internals</h1> | 11 <h1>Drive Internals</h1> |
12 <ul id='toc'></ul> | 12 <ul id='toc'></ul> |
13 | 13 |
14 <h2 id='authentication-status-section'>Authentication Status</h2> | 14 <h2 id='connection-status-section'>Connection Status</h2> |
15 <ul> | 15 <ul> |
16 <li> | 16 <li> |
| 17 Status: <span id='connection-status'></span> |
| 18 </li> |
| 19 <li> |
17 Has refresh token: <span id='has-refresh-token'></span> | 20 Has refresh token: <span id='has-refresh-token'></span> |
18 <button id='button-clear-refresh-token'>clear</button> | 21 <button id='button-clear-refresh-token'>clear</button> |
19 </li> | 22 </li> |
20 <li> | 23 <li> |
21 Has access token: <span id='has-access-token'></span> | 24 Has access token: <span id='has-access-token'></span> |
22 <button id='button-clear-access-token'>clear</button> | 25 <button id='button-clear-access-token'>clear</button> |
23 </li> | 26 </li> |
24 </ul> | 27 </ul> |
25 | 28 |
26 <h2 id='account-information-section'>Account Information</h2> | 29 <h2 id='account-information-section'>Account Information</h2> |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 <th>Support Create</th> | 131 <th>Support Create</th> |
129 </tr> | 132 </tr> |
130 </tbody> | 133 </tbody> |
131 </table> | 134 </table> |
132 | 135 |
133 <h2 id='event-log-section'>Event Log</h2> | 136 <h2 id='event-log-section'>Event Log</h2> |
134 <ul id='event-log'> | 137 <ul id='event-log'> |
135 </ul> | 138 </ul> |
136 </body> | 139 </body> |
137 </html> | 140 </html> |
OLD | NEW |