toolkit/crashreporter/content/crashes.xhtml

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <?xml version="1.0" encoding="UTF-8"?>
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
michael@0 7 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"
michael@0 8 [
michael@0 9 <!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
michael@0 10 <!ENTITY % crashesDTD SYSTEM "chrome://global/locale/crashes.dtd">
michael@0 11 %globalDTD;
michael@0 12 %crashesDTD;
michael@0 13 ]>
michael@0 14
michael@0 15 <html xmlns="http://www.w3.org/1999/xhtml">
michael@0 16 <head>
michael@0 17 <style type="text/css">
michael@0 18 :root {
michael@0 19 font-family: sans-serif;
michael@0 20 }
michael@0 21 table {
michael@0 22 padding-bottom: 2em;
michael@0 23 }
michael@0 24 th {
michael@0 25 text-align: left;
michael@0 26 white-space: nowrap;
michael@0 27 }
michael@0 28 th[chromedir="rtl"] {
michael@0 29 text-align: right;
michael@0 30 }
michael@0 31 /* name */
michael@0 32 th:first-child {
michael@0 33 -moz-padding-end: 2em;
michael@0 34 }
michael@0 35 :link, :visited {
michael@0 36 display: block;
michael@0 37 min-height: 17px;
michael@0 38 }
michael@0 39 /* date */
michael@0 40 td:first-child + td {
michael@0 41 -moz-padding-start: 1em;
michael@0 42 -moz-padding-end: .5em;
michael@0 43 white-space: nowrap;
michael@0 44 }
michael@0 45 /* time */
michael@0 46 td:last-child {
michael@0 47 -moz-padding-start: .5em;
michael@0 48 white-space: nowrap;
michael@0 49 }
michael@0 50
michael@0 51 #clear-reports {
michael@0 52 float: right;
michael@0 53 }
michael@0 54 #clear-reports[chromedir="rtl"] {
michael@0 55 float: left;
michael@0 56 }
michael@0 57
michael@0 58 .submitting {
michael@0 59 background-image: url(chrome://global/skin/icons/loading_16.png);
michael@0 60 background-repeat: no-repeat;
michael@0 61 background-position: right;
michael@0 62 }
michael@0 63 </style>
michael@0 64 <link rel="stylesheet" media="screen, projection" type="text/css"
michael@0 65 href="chrome://global/skin/dirListing/dirListing.css"/>
michael@0 66 <script type="application/javascript;version=1.8" src="chrome://global/content/crashes.js"/>
michael@0 67
michael@0 68 <title>&crashes.title;</title>
michael@0 69 </head><body onload="populateReportList()" dir="&locale.dir;">
michael@0 70 <button chromedir="&locale.dir;" id="clear-reports"
michael@0 71 onclick="clearReports().then(null, Cu.reportError)">&clearAllReports.label;</button>
michael@0 72 <h1>&crashes.title;</h1>
michael@0 73 <div id="reportList">
michael@0 74 <table>
michael@0 75 <thead>
michael@0 76 <tr>
michael@0 77 <th chromedir="&locale.dir;">&id.heading;</th>
michael@0 78 <th chromedir="&locale.dir;" colspan="2">&date.heading;</th>
michael@0 79 </tr>
michael@0 80 </thead>
michael@0 81 <tbody id="tbody">
michael@0 82 </tbody>
michael@0 83 </table>
michael@0 84 </div>
michael@0 85 <p id="noReports" style="display: none">&noReports.label;</p>
michael@0 86 <p id="noConfig" style="display: none">&noConfig.label;</p>
michael@0 87 </body>
michael@0 88 </html>

mercurial