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