Files
palemoon27/toolkit/components/aboutcompartments/content/aboutCompartments.xhtml
T

44 lines
1.1 KiB
HTML

<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>about:compartments</title>
<script type="text/javascript;version=1.8" src="chrome://global/content/aboutCompartments.js"></script>
<style>
td.addon {
display: inline-block;
width: 400px;
}
td.time {
display: inline-block;
width: 100px;
}
td.cpow {
display: inline-block;
width: 100px;
}
.header {
font-weight: bold;
}
tr.details {
font-weight: lighter;
color: gray;
display: none;
}
</style>
</head>
<body onload="go()">
<table id="data">
<tr class="header">
<td class="time">time</td>
<td class="cpow">time in CPOWs</td>
<td class="addon">name</td>
</tr>
</table>
</body>
</html>