Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(799)

Side by Side Diff: chrome/browser/resources/chromeos/network_configuration/status.html

Issue 117713003: Add encoding info for those WebUI pages that were missing it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698