1 |
<!DOCTYPE html> |
2 |
<!-- |
3 |
jscoverage.html - code coverage for JavaScript |
4 |
Copyright (C) 2007, 2008 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="jscoverage-highlight.css"> |
25 |
<link rel="stylesheet" type="text/css" href="jscoverage.css"> |
26 |
<!--[if IE]> |
27 |
<link rel="stylesheet" type="text/css" href="jscoverage-ie.css"> |
28 |
<![endif]--> |
29 |
<script type="text/javascript" src="jscoverage.js"></script> |
30 |
</head> |
31 |
|
32 |
<body onload="jscoverage_body_load();" onresize="jscoverage_body_resize();"> |
33 |
<div id="headingDiv"> |
34 |
<div id="progressBar" class="ProgressBar"><div class="pctGraph"><div class="covered"></div></div><span class="pct"></span></div> |
35 |
<div id="progressLabel"></div> |
36 |
<h1>JSCoverage</h1> |
37 |
</div> |
38 |
|
39 |
<div id="tabs" class="Tabs"> |
40 |
<div id="browserTab">Browser</div> |
41 |
<div id="summaryTab">Summary</div> |
42 |
<div id="sourceTab" class="disabled">Source</div> |
43 |
<div id="storeTab">Store</div> |
44 |
<div id="aboutTab">About</div> |
45 |
</div> |
46 |
<div id="tabPages" class="TabPages"> |
47 |
<div class="TabPage" id="browserTabPage"> |
48 |
<div id="locationDiv"> |
49 |
URL: <input id="location" type="text" size="70" onkeypress="jscoverage_input_keypress(event)"> |
50 |
<button onclick="jscoverage_button_click();">Go</button> |
51 |
</div> |
52 |
<div id="iframeDiv"> |
53 |
<iframe id="browserIframe" onload="jscoverage_browser_load();"></iframe> |
54 |
</div> |
55 |
</div> |
56 |
<div class="TabPage"> |
57 |
<input type="checkbox" id="checkbox" onclick="return jscoverage_checkbox_click();"> <label for="checkbox">Show missing statements column</label> |
58 |
<div id="summaryDiv"> |
59 |
<div id="summaryErrorDiv"></div> |
60 |
<table id="summaryTable"> |
61 |
<thead> |
62 |
<tr id="headerRow"> |
63 |
<th class="leftColumn">File</th> |
64 |
<th><abbr title="The total number of executable statements">Statements</abbr></th> |
65 |
<th><abbr title="The number of statements actually executed">Executed</abbr></th> |
66 |
<th><abbr title="Number of executed statements as a percentage of total number of statements">Coverage</abbr></th> |
67 |
</tr> |
68 |
<tr id="summaryTotals"> |
69 |
<td class="leftColumn"> |
70 |
<span class="title">Total:</span> |
71 |
<span>0</span> |
72 |
</td> |
73 |
<td class="numeric">0</td> |
74 |
<td class="numeric">0</td> |
75 |
<td class="coverage"> |
76 |
<div class="pctGraph"> |
77 |
<div class="covered"></div> |
78 |
</div> |
79 |
<span class="pct">0%</span> |
80 |
</td> |
81 |
</tr> |
82 |
|
83 |
</thead> |
84 |
<tbody id="summaryTbody"> |
85 |
|
86 |
<!-- |
87 |
<tr> |
88 |
<td>0</td> |
89 |
<td>0</td> |
90 |
<td>0</td> |
91 |
<td>0%</td> |
92 |
<td>0</td> |
93 |
</tr> |
94 |
--> |
95 |
|
96 |
</tbody> |
97 |
</table> |
98 |
</div> |
99 |
</div> |
100 |
<div class="TabPage"> |
101 |
<div id="fileDiv"></div> |
102 |
<div id="sourceDiv"></div> |
103 |
</div> |
104 |
<div class="TabPage" id="storeTabPage"> |
105 |
<button id="storeButton" onclick="jscoverage_storeButton_click();">Store Report</button> |
106 |
<img id="storeImg" src="jscoverage-throbber.gif" alt="loading..."> |
107 |
<div id="storeDiv"></div> |
108 |
</div> |
109 |
<div class="TabPage"> |
110 |
<p> |
111 |
This is version 0.4 of JSCoverage, a program that calculates code |
112 |
coverage statistics for JavaScript. |
113 |
</p> |
114 |
<p> |
115 |
See <a href="http://siliconforks.com/jscoverage/">http://siliconforks.com/jscoverage/</a> for more information. |
116 |
</p> |
117 |
<p> |
118 |
Copyright © 2007, 2008 siliconforks.com |
119 |
</p> |
120 |
</div> |
121 |
</div> |
122 |
|
123 |
</body> |
124 |
</html> |