1 |
<!DOCTYPE html> |
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 |
<script type="text/javascript" src="sh_main.js"></script> |
27 |
<script type="text/javascript" src="sh_javascript.js"></script> |
28 |
<script type="text/javascript" src="jscoverage.js"></script> |
29 |
</head> |
30 |
|
31 |
<body onload="body_load();" onresize="body_resize();"> |
32 |
<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 |
|
38 |
<div id="tabControl" class="TabControl"> |
39 |
<div id="tabs" class="Tabs"> |
40 |
<div id="browserTab"><img src="jscoverage-throbber.gif" alt="loading..."> Browser <img src="jscoverage-throbber.gif" alt="loading..."></div> |
41 |
<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 |
<input type="checkbox" id="checkbox" onclick="return checkbox_click();"> <label for="checkbox">Show missing statements column</label> |
55 |
<div id="summaryDiv"> |
56 |
<table id="summaryTable"> |
57 |
<thead> |
58 |
<tr id="headerRow"> |
59 |
<th class="leftColumn">File</th> |
60 |
<th><abbr title="The total number of executable statements">Statements</abbr></th> |
61 |
<th><abbr title="The number of statements actually executed">Executed</abbr></th> |
62 |
<th><abbr title="Number of executed statements as a percentage of total number of statements">Coverage</abbr></th> |
63 |
</tr> |
64 |
<tr id="summaryTotals"> |
65 |
<td class="leftColumn"> |
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 |
</tr> |
78 |
|
79 |
</thead> |
80 |
<tbody id="summaryTbody"> |
81 |
|
82 |
<!-- |
83 |
<tr> |
84 |
<td>0</td> |
85 |
<td>0</td> |
86 |
<td>0</td> |
87 |
<td>0%</td> |
88 |
<td>0</td> |
89 |
</tr> |
90 |
--> |
91 |
|
92 |
</tbody> |
93 |
</table> |
94 |
</div> |
95 |
</div> |
96 |
<div class="TabPage"> |
97 |
<div id="fileDiv"></div> |
98 |
<div id="sourceDiv"></div> |
99 |
</div> |
100 |
<div class="TabPage"> |
101 |
This is version 0.3 of JSCoverage, a program that calculates code |
102 |
coverage statistics for JavaScript. |
103 |
<p> |
104 |
See <a href="http://siliconforks.com/jscoverage/">http://siliconforks.com/jscoverage/</a> for more information. |
105 |
</p> |
106 |
<p> |
107 |
Copyright © 2007 siliconforks.com |
108 |
</p> |
109 |
</div> |
110 |
</div> |
111 |
</div> |
112 |
|
113 |
</body> |
114 |
</html> |