summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/network.html
blob: 1e9b11bf8d38b74bd64bd3ad3a616014df6637ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE HTML>
<html i18n-values="dir:textdirection;">
<head>
  <meta charset="utf-8">
  <title id="network" i18n-content="titleText"></title>
  <link rel="stylesheet" href="chrome://network/network.css">
  <script src="chrome://resources/js/load_time_data.js"></script>
  <script src="chrome://resources/js/util.js"></script>
  <script src="chrome://network/strings.js"></script>
  <script src="chrome://network/network.js"></script>
</head>
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
  <p i18n-content="autoRefreshText"></p>
  <h3>Event Log (Newest first):</h3>
  <div id="log-level-container">
    <button id="log-refresh" i18n-content="logRefreshText"></button>
    <label i18n-content="logLevelShowText"></label>
    <input id="log-error" type="checkbox">
    <label for="log-error" i18n-content="logLevelErrorText"></label>
    <input id="log-user" type="checkbox">
    <label for="log-user" i18n-content="logLevelUserText"></label>
    <input id="log-event" type="checkbox">
    <label for="log-event" i18n-content="logLevelEventText"></label>
    <input id="log-debug" type="checkbox">
    <label for="log-debug" i18n-content="logLevelDebugText"></label>
    <input id="log-fileinfo" type="checkbox">
    <label for="log-fileinfo" i18n-content="logLevelFileinfoText"></label>
  </div>
  <div id="network-log-container">
  </div>
  <h3>Networks: </h3>
  <table id="network-status-table">
    <tr class="network-status-table-header">
      <td>Path</td>
      <td>GUID</td>
      <td>Name</td>
      <td>Type</td>
      <td>Status</td>
      <td>Profile</td>
      <td>Connect</td>
      <td>Error</td>
      <td>IP Addr</td>
      <td>Security</td>
      <td>Technology</td>
      <td>Activation</td>
      <td>Roaming</td>
      <td>OOC</td>
      <td>Strength</td>
    </tr>
  </table>
  <script src="chrome://resources/js/i18n_template2.js"></script>
</body>
</html>