| 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="chrome://resources/js/load_time_data.js"></script> |
| 9 <script src="local_discovery.js"></script> | 10 <script src="local_discovery.js"></script> |
| 11 <script src="strings.js"></script> |
| 10 </head> | 12 </head> |
| 11 <body> | 13 <body> |
| 12 <p> | |
| 13 Searching for discoverable devices... | |
| 14 </p> | |
| 15 <div> | 14 <div> |
| 15 <div id="info-console"></div> |
| 16 <table id="devices-table" width="100%"> | 16 <table id="devices-table" width="100%"> |
| 17 <thead> | 17 <thead> |
| 18 <th>Name</th> | 18 <th i18n-content="serviceName"></th> |
| 19 <th>Domain</th> | 19 <th i18n-content="serviceDomain"></th> |
| 20 <th>Port</th> | 20 <th i18n-content="servicePort"></th> |
| 21 <th>IP</th> | 21 <th i18n-content="serviceIp"></th> |
| 22 <th>Metadata</th> | 22 <th i18n-content="serviceLastseen"></th> |
| 23 <th>Last seen</th> | 23 <th i18n-content="serviceRegister"></th> |
| 24 <th>Registered</th> | |
| 25 </thead> | 24 </thead> |
| 26 </table> | 25 </table> |
| 27 </div> | 26 </div> |
| 27 |
| 28 <script src="chrome://resources/js/i18n_template2.js"></script> |
| 29 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 28 </body> | 30 </body> |
| 29 </html> | 31 </html> |
| OLD | NEW |