mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-05 03:54:35 +00:00
55b6b3268e
This patch was generated by the command: find * -type f -exec sed -i -f ../mozpropsub {} \; in the root of the repository, with the file ../mozpropsub containing: s/-moz-padding-end\>/padding-inline-end/g s/-moz-padding-start\>/padding-inline-start/g s/-moz-margin-end\>/margin-inline-end/g s/-moz-margin-start\>/margin-inline-start/g s/-moz-border-end\>/border-inline-end/g s/-moz-border-end-color\>/border-inline-end-color/g s/-moz-border-end-style\>/border-inline-end-style/g s/-moz-border-end-width\>/border-inline-end-width/g s/-moz-border-start\>/border-inline-start/g s/-moz-border-start-color\>/border-inline-start-color/g s/-moz-border-start-style\>/border-inline-start-style/g s/-moz-border-start-width\>/border-inline-start-width/g s/\<MozPaddingEnd\>/paddingInlineEnd/g s/\<MozPaddingStart\>/paddingInlineStart/g s/\<MozMarginEnd\>/marginInlineEnd/g s/\<MozMarginStart\>/marginInlineStart/g s/\<MozBorderEnd\>/borderInlineEnd/g s/\<MozBorderEndColor\>/borderInlineEndColor/g s/\<MozBorderEndStyle\>/borderInlineEndStyle/g s/\<MozBorderEndWidth\>/borderInlineEndWidth/g s/\<MozBorderStart\>/borderInlineStart/g s/\<MozBorderStartColor\>/borderInlineStartColor/g s/\<MozBorderStartStyle\>/borderInlineStartStyle/g s/\<MozBorderStartWidth\>/borderInlineStartWidth/g The diffs for the following files: layout/style/nsCSSPropAliasList.h layout/style/test/property_database.js layout/style/test/test_value_computation.html were then manually removed from the patch. MozReview-Commit-ID: 8fbYnlZcn9U
109 lines
2.5 KiB
HTML
109 lines
2.5 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- 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/. -->
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
|
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"
|
|
[
|
|
<!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
|
|
<!ENTITY % crashesDTD SYSTEM "chrome://global/locale/crashes.dtd">
|
|
%globalDTD;
|
|
%crashesDTD;
|
|
]>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<style type="text/css">
|
|
:root {
|
|
font-family: sans-serif;
|
|
margin: 40px auto;
|
|
min-width: 30em;
|
|
max-width: 60em;
|
|
}
|
|
table {
|
|
clear: both;
|
|
width: 90%;
|
|
margin: 0 auto;
|
|
padding-bottom: 2em;
|
|
}
|
|
th {
|
|
font-size: 130%;
|
|
text-align: left;
|
|
white-space: nowrap;
|
|
}
|
|
th[chromedir="rtl"] {
|
|
text-align: right;
|
|
}
|
|
/* name */
|
|
th:first-child {
|
|
padding-inline-end: 2em;
|
|
}
|
|
/* submitted */
|
|
th:last-child {
|
|
text-align: center;
|
|
}
|
|
:link, :visited {
|
|
display: block;
|
|
min-height: 17px;
|
|
}
|
|
/* date */
|
|
td:first-child + td {
|
|
width: 0;
|
|
padding-inline-start: 1em;
|
|
padding-inline-end: .5em;
|
|
white-space: nowrap;
|
|
}
|
|
/* time */
|
|
td:last-child {
|
|
width: 0;
|
|
padding-inline-start: .5em;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#clear-reports {
|
|
float: right;
|
|
}
|
|
#clear-reports[chromedir="rtl"] {
|
|
float: left;
|
|
}
|
|
|
|
.submitting {
|
|
background-image: url(chrome://global/skin/icons/loading.png);
|
|
background-repeat: no-repeat;
|
|
background-position: right;
|
|
background-size: 16px;
|
|
}
|
|
|
|
@media (min-resolution: 1.1dppx) {
|
|
.submitting {
|
|
background-image: url(chrome://global/skin/icons/loading@2x.png);
|
|
}
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" media="screen, projection" type="text/css"
|
|
href="chrome://global/skin/in-content/common.css"/>
|
|
<script type="application/javascript;version=1.8" src="chrome://global/content/crashes.js"/>
|
|
|
|
<title>&crashes.title;</title>
|
|
</head><body onload="populateReportList()" dir="&locale.dir;">
|
|
<button chromedir="&locale.dir;" id="clear-reports"
|
|
onclick="clearReports().then(null, Cu.reportError)">&clearAllReports.label;</button>
|
|
<h1>&crashes.title;</h1>
|
|
<div id="reportList">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th chromedir="&locale.dir;">&id.heading;</th>
|
|
<th chromedir="&locale.dir;" colspan="2">&date.heading;</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="tbody">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<p id="noReports" style="display: none">&noReports.label;</p>
|
|
<p id="noConfig" style="display: none">&noConfig.label;</p>
|
|
</body>
|
|
</html>
|