/[jscoverage]/trunk/jscoverage.html
ViewVC logotype

Annotation of /trunk/jscoverage.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4 - (hide annotations)
Wed Aug 1 16:50:23 2007 UTC (15 years, 10 months ago) by siliconforks
File MIME type: text/html
File size: 4113 byte(s)
Add bar graphs to coverage summary (patch by Ross Simpson).

1 siliconforks 2 <!--
2     jscoverage.html - code coverage for JavaScript
3     Copyright (C) 2007 siliconforks.com
4    
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9    
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13     GNU General Public License for more details.
14    
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18     -->
19    
20     <html>
21     <head>
22     <title>JSCoverage</title>
23     <link rel="stylesheet" type="text/css" href="sh_nedit.css">
24     <link rel="stylesheet" type="text/css" href="jscoverage.css">
25     <script type="text/javascript" src="sh_main.min.js"></script>
26     <script type="text/javascript" src="sh_javascript.min.js"></script>
27     <script type="text/javascript" src="jscoverage.js"></script>
28     </head>
29    
30     <body onload="body_load();" onresize="body_resize();">
31     <h1>JSCoverage <span id="processingSpan">(working ...)</span></h1>
32    
33     <div id="tabControl" class="TabControl">
34     <div id="tabs" class="Tabs">
35     <div><img src="jscoverage-throbber.gif" alt="loading..."> Browser <img src="jscoverage-throbber.gif" alt="loading..."></div>
36     <div id="summaryTab"><img src="jscoverage-throbber.gif" alt="loading..."> Summary <img src="jscoverage-throbber.gif" alt="loading..."></div>
37     <div id="sourceTab" class="disabled"><img id="throbberImg" src="jscoverage-throbber.gif" alt="loading..."> Source <img src="jscoverage-throbber.gif" alt="loading..."></div>
38     <div><img src="jscoverage-throbber.gif" alt="loading..."> About <img src="jscoverage-throbber.gif" alt="loading..."></div>
39     </div>
40     <div id="tabPages" class="TabPages">
41     <div class="TabPage">
42     <div id="locationDiv">
43     URL: <input id="location" type="text" size="70" onkeypress="input_keypress(event)">
44     <button onclick="button_click();">Go</button>
45     </div>
46     <iframe id="browserIframe" onload="browser_load();"></iframe>
47     </div>
48     <div class="TabPage">
49     <div id="summaryDiv">
50     <table id="summaryTable">
51     <thead>
52     <tr>
53     <th>File</th>
54     <th><abbr title="The total number of executable statements">Statements</abbr></th>
55     <th><abbr title="The number of statements actually executed">Executed</abbr></th>
56     <th><abbr title="Number of executed statements as a percentage of total number of statements">Coverage</abbr></th>
57     <th><abbr title="List of statements missed during execution">Missing</abbr></th>
58     </tr>
59 siliconforks 4 <tr id="summaryTotals">
60     <td class="totals">
61     <span class="title">Total:</span>
62     <span>0</span>
63     </td>
64     <td class="numeric">0</td>
65     <td class="numeric">0</td>
66     <td class="coverage">
67     <div class="pctGraph">
68     <div class="covered"></div>
69     </div>
70     <span class="pct">0%</span>
71     </td>
72     <td></td>
73     </tr>
74    
75 siliconforks 2 </thead>
76     <tbody id="summaryTbody">
77    
78     <!--
79     <tr>
80     <td>0</td>
81     <td>0</td>
82     <td>0</td>
83     <td>0%</td>
84     <td>0</td>
85     </tr>
86     -->
87    
88     </tbody>
89     </table>
90     </div>
91     </div>
92     <div class="TabPage">
93     <div id="fileDiv"></div>
94     <div id="sourceDiv"></div>
95     </div>
96     <div class="TabPage">
97     This is version 0.2 of JSCoverage, a program that calculates code
98     coverage statistics for JavaScript.
99     <p>
100     See <a href="http://siliconforks.com/jscoverage/">http://siliconforks.com/jscoverage/</a> for more information.
101     </p>
102     <p>
103     Copyright &copy; 2007 siliconforks.com
104     </p>
105     </div>
106     </div>
107     </div>
108    
109     </body>
110     </html>

  ViewVC Help
Powered by ViewVC 1.1.24