Bug 1946184 - Fix computing the CSD margin right after calling HideWindowChrome(...
[gecko.git] / toolkit / components / aboutprocesses / content / aboutProcesses.html
blob3d7085f487eb8eb3fb94dcc89e390dee525d8375
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
2 - License, v. 2.0. If a copy of the MPL was not distributed with this
3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
4 <!doctype html>
5 <html>
6 <head>
7 <meta
8 http-equiv="Content-Security-Policy"
9 content="default-src chrome:;img-src data:; object-src 'none'"
11 <meta name="color-scheme" content="light dark" />
12 <title data-l10n-id="about-processes-title"></title>
13 <link
14 rel="icon"
15 id="favicon"
16 href="chrome://global/skin/icons/performance.svg"
18 <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" />
19 <link rel="localization" href="toolkit/about/aboutProcesses.ftl" />
20 <link rel="localization" href="branding/brand.ftl" />
21 <script src="chrome://global/content/aboutProcesses.js"></script>
22 <link rel="stylesheet" href="chrome://global/content/aboutProcesses.css" />
23 </head>
24 <body>
25 <table id="process-table">
26 <thead id="process-thead">
27 <tr>
28 <th
29 class="clickable"
30 id="column-name"
31 data-l10n-id="about-processes-column-name"
32 ></th>
33 <th
34 class="clickable"
35 id="column-memory-resident"
36 data-l10n-id="about-processes-column-memory-resident"
37 ></th>
38 <!-- Memory usage. -->
39 <th
40 class="clickable"
41 id="column-cpu-total"
42 data-l10n-id="about-processes-column-cpu-total"
43 ></th>
44 <!--CPU time-->
45 <th id="column-kill" data-l10n-id="about-processes-column-action">
46
47 </th>
48 <!-- Kill button. -->
49 </tr>
50 </thead>
51 <tbody id="process-tbody"></tbody>
52 </table>
53 </body>
54 </html>