OLD | NEW |
---|---|
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title>Local Discovery Debug Page</title> | 5 <title>Local Discovery Debug Page</title> |
6 <link rel="stylesheet" href="local_discovery.css"> | 6 <link rel="stylesheet" href="local_discovery.css"> |
7 <script src="chrome://resources/js/cr.js"></script> | 7 <script src="chrome://resources/js/cr.js"></script> |
8 <script src="chrome://resources/js/util.js"></script> | 8 <script src="chrome://resources/js/util.js"></script> |
9 <script src="local_discovery.js"></script> | 9 <script src="local_discovery.js"></script> |
10 </head> | 10 </head> |
11 <body> | 11 <body> |
12 <p> | 12 <p> |
13 Searching for discoverable devices... | 13 Searching for discoverable devices... |
14 </p> | 14 </p> |
15 <div> | 15 <div> |
16 <div id="infoConsole"> </div> | |
James Hawkins
2013/07/29 16:27:03
nit: IDs should be dash-case.
James Hawkins
2013/07/29 16:27:03
nit: Remove space in div.
Noam Samuel
2013/08/02 22:20:02
Done.
| |
16 <table id="devices-table" width="100%"> | 17 <table id="devices-table" width="100%"> |
17 <thead> | 18 <thead> |
18 <th>Name</th> | 19 <th>Name</th> |
James Hawkins
2013/07/29 16:27:03
These strings need to be localized.
Noam Samuel
2013/07/29 16:58:01
This is a provisional UI behind a flag. We plan to
James Hawkins
2013/07/29 17:01:57
Let's assume you're going to get signoff (otherwis
Noam Samuel
2013/08/02 22:20:02
Done.
| |
19 <th>Domain</th> | 20 <th>Domain</th> |
20 <th>Port</th> | 21 <th>Port</th> |
21 <th>IP</th> | 22 <th>IP</th> |
22 <th>Metadata</th> | 23 <th>Metadata</th> |
23 <th>Last seen</th> | 24 <th>Last seen</th> |
24 <th>Registered</th> | 25 <th>Register</th> |
25 </thead> | 26 </thead> |
26 </table> | 27 </table> |
27 </div> | 28 </div> |
28 </body> | 29 </body> |
29 </html> | 30 </html> |
OLD | NEW |