1 |
<!-- |
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 |
</thead> |
60 |
<tbody id="summaryTbody"> |
61 |
|
62 |
<!-- |
63 |
<tr> |
64 |
<td>0</td> |
65 |
<td>0</td> |
66 |
<td>0</td> |
67 |
<td>0%</td> |
68 |
<td>0</td> |
69 |
</tr> |
70 |
--> |
71 |
|
72 |
</tbody> |
73 |
</table> |
74 |
</div> |
75 |
</div> |
76 |
<div class="TabPage"> |
77 |
<div id="fileDiv"></div> |
78 |
<div id="sourceDiv"></div> |
79 |
</div> |
80 |
<div class="TabPage"> |
81 |
This is version 0.2 of JSCoverage, a program that calculates code |
82 |
coverage statistics for JavaScript. |
83 |
<p> |
84 |
See <a href="http://siliconforks.com/jscoverage/">http://siliconforks.com/jscoverage/</a> for more information. |
85 |
</p> |
86 |
<p> |
87 |
Copyright © 2007 siliconforks.com |
88 |
</p> |
89 |
</div> |
90 |
</div> |
91 |
</div> |
92 |
|
93 |
</body> |
94 |
</html> |