| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> |
| 4 <title>Network Status</title> | 5 <title>Network Status</title> |
| 5 <script src="chrome://resources/js/util.js"></script> | 6 <script src="chrome://resources/js/util.js"></script> |
| 6 <script src="chrome://resources/js/cr.js"></script> | 7 <script src="chrome://resources/js/cr.js"></script> |
| 7 <script src="chrome://resources/js/cr/event_target.js"></script> | 8 <script src="chrome://resources/js/cr/event_target.js"></script> |
| 8 <script src="chrome://resources/js/cr/ui.js"></script> | 9 <script src="chrome://resources/js/cr/ui.js"></script> |
| 9 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script> | 10 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script> |
| 10 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script> | 11 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script> |
| 11 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script> | 12 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script> |
| 12 <script src="chrome://resources/js/cr/ui/list_single_selection_model.js"> | 13 <script src="chrome://resources/js/cr/ui/list_single_selection_model.js"> |
| 13 </script> | 14 </script> |
| 14 <script src="chrome://resources/js/cr/ui/list_item.js"></script> | 15 <script src="chrome://resources/js/cr/ui/list_item.js"></script> |
| 15 <script src="chrome://resources/js/cr/ui/list.js"></script> | 16 <script src="chrome://resources/js/cr/ui/list.js"></script> |
| 16 <script src="js/network_status.js"></script> | 17 <script src="js/network_status.js"></script> |
| 17 <script src="js/main_status.js"></script> | 18 <script src="js/main_status.js"></script> |
| 18 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> | 19 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> |
| 19 <link rel="stylesheet" href="chrome://resources/css/list.css"> | 20 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
| 20 <link rel="stylesheet" href="css/status.css"></link> | 21 <link rel="stylesheet" href="css/status.css"></link> |
| 21 </head> | 22 </head> |
| 22 <body> | 23 <body> |
| 23 <h3>Networks</h3> | 24 <h3>Networks</h3> |
| 24 <list id="network-status"></list> | 25 <list id="network-status"></list> |
| 25 <iframe name="network-config-frame"></iframe> | 26 <iframe name="network-config-frame"></iframe> |
| 26 </body> | 27 </body> |
| 27 </html> | 28 </html> |
| OLD | NEW |