Backed out changeset 7b9eac460383 (bug 512479) for browser_aboutCrashes.js failures

This commit is contained in:
Phil Ringnalda 2016-09-26 19:35:21 -07:00
parent 67df428994
commit 83aa20ccfd
3 changed files with 15 additions and 36 deletions

View File

@ -80,6 +80,7 @@ function populateReportList() {
var formatter = Cc["@mozilla.org/intl/scriptabledateformat;1"].
createInstance(Ci.nsIScriptableDateFormat);
var body = document.getElementById("tbody");
var ios = Cc["@mozilla.org/network/io-service;1"].
getService(Ci.nsIIOService);
var reportURI = ios.newURI(reportURL, null, null);
@ -119,11 +120,7 @@ function populateReportList() {
date.getSeconds());
cell.appendChild(document.createTextNode(timestr));
row.appendChild(cell);
if (reports[i].pending) {
document.getElementById("unsubmitted").appendChild(row);
} else {
document.getElementById("submitted").appendChild(row);
}
body.appendChild(row);
}
}

View File

@ -89,33 +89,18 @@ td:last-child {
</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">
<div id="reportListUnsubmitted">
<h1>&crashesUnsubmitted.label;</h1>
<table>
<thead>
<tr>
<th chromedir="&locale.dir;">&id.heading;</th>
<th chromedir="&locale.dir;" colspan="2">&dateCrashed.heading;</th>
</tr>
</thead>
<tbody id="unsubmitted">
</tbody>
</table>
</div>
<div id="reportListSubmitted">
<h1>&crashesSubmitted.label;</h1>
<table>
<thead>
<tr>
<th chromedir="&locale.dir;">&id.heading;</th>
<th chromedir="&locale.dir;" colspan="2">&dateSubmitted.heading;</th>
</tr>
</thead>
<tbody id="submitted">
</tbody>
</table>
</div>
<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>

View File

@ -2,12 +2,9 @@
- 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/. -->
<!ENTITY crashes.title "Crash Reports">
<!ENTITY crashesUnsubmitted.label "Unsubmitted Crash Reports">
<!ENTITY crashesSubmitted.label "Submitted Crash Reports">
<!ENTITY crashes.title "Submitted Crash Reports">
<!ENTITY id.heading "Report ID">
<!ENTITY dateCrashed.heading "Date Crashed">
<!ENTITY dateSubmitted.heading "Date Submitted">
<!ENTITY date.heading "Date Submitted">
<!ENTITY noReports.label "No crash reports have been submitted.">
<!ENTITY noConfig.label "This application has not been configured to display crash reports. The preference <code>breakpad.reportURL</code> must be set.">
<!ENTITY clearAllReports.label "Remove All Reports">