summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/sandbox_internals/sandbox_internals.html
blob: 7f4816b4bbe28f0c2fc87d82372f7fe4825ae7d4 (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
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Sandbox Status</title>
    <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
    <style type="text/css">
      #sandbox-status {
        border: 1px solid gray;
      }
      #sandbox-status td {
        border: 1px solid gray;
        padding: 3px;
      }
      #evaluation {
        font-weight: bold;
      }
      .good {
        background-color: rgb(143, 218, 146);
      }
      .bad {
        background-color: rgb(249, 156, 149);
      }
      .medium {
        background-color: rgb(255, 255, 90);
      }
      .info {
        background-color: rgb(169, 217, 239);
      }
    </style>
    <script src="chrome://resources/js/cr.js"></script>
    <if expr="not is_android">
    <script src="chrome://resources/js/load_time_data.js"></script>
    <script src="chrome://sandbox/strings.js"></script>
    </if>
    <script src="chrome://resources/js/util.js"></script>
    <script src="sandbox_internals.js"></script>
  </head>
  <body>
    <h1>Sandbox Status</h1>

    <table id="sandbox-status">
    </table>

    <p id="evaluation"></p>
  </body>
</html>