21 |
<html> |
<html> |
22 |
<head> |
<head> |
23 |
<title>JSCoverage</title> |
<title>JSCoverage</title> |
24 |
<link rel="stylesheet" type="text/css" href="sh_nedit.css"> |
<link rel="stylesheet" type="text/css" href="jscoverage-sh_nedit.css"> |
25 |
<link rel="stylesheet" type="text/css" href="jscoverage.css"> |
<link rel="stylesheet" type="text/css" href="jscoverage.css"> |
26 |
<script type="text/javascript" src="sh_main.js"></script> |
<script type="text/javascript" src="jscoverage-sh_main.js"></script> |
27 |
<script type="text/javascript" src="sh_javascript.min.js"></script> |
<script type="text/javascript" src="jscoverage-sh_javascript.js"></script> |
28 |
<script type="text/javascript" src="jscoverage.js"></script> |
<script type="text/javascript" src="jscoverage.js"></script> |
29 |
</head> |
</head> |
30 |
|
|
51 |
<iframe id="browserIframe" onload="browser_load();"></iframe> |
<iframe id="browserIframe" onload="browser_load();"></iframe> |
52 |
</div> |
</div> |
53 |
<div class="TabPage"> |
<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"> |
<div id="summaryDiv"> |
56 |
<table id="summaryTable"> |
<table id="summaryTable"> |
57 |
<thead> |
<thead> |
58 |
<tr> |
<tr id="headerRow"> |
59 |
<th>File</th> |
<th class="leftColumn">File</th> |
60 |
<th><abbr title="The total number of executable statements">Statements</abbr></th> |
<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> |
<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> |
<th><abbr title="Number of executed statements as a percentage of total number of statements">Coverage</abbr></th> |
|
<th id="missingHeader"><abbr title="List of statements missed during execution">Missing</abbr></th> |
|
63 |
</tr> |
</tr> |
64 |
<tr id="summaryTotals"> |
<tr id="summaryTotals"> |
65 |
<td class="totals"> |
<td class="leftColumn"> |
66 |
<span class="title">Total:</span> |
<span class="title">Total:</span> |
67 |
<span>0</span> |
<span>0</span> |
68 |
</td> |
</td> |
74 |
</div> |
</div> |
75 |
<span class="pct">0%</span> |
<span class="pct">0%</span> |
76 |
</td> |
</td> |
|
<td id="missingCell"></td> |
|
77 |
</tr> |
</tr> |
78 |
|
|
79 |
</thead> |
</thead> |
98 |
<div id="sourceDiv"></div> |
<div id="sourceDiv"></div> |
99 |
</div> |
</div> |
100 |
<div class="TabPage"> |
<div class="TabPage"> |
101 |
This is version 0.2 of JSCoverage, a program that calculates code |
This is version 0.3 of JSCoverage, a program that calculates code |
102 |
coverage statistics for JavaScript. |
coverage statistics for JavaScript. |
103 |
<p> |
<p> |
104 |
See <a href="http://siliconforks.com/jscoverage/">http://siliconforks.com/jscoverage/</a> for more information. |
See <a href="http://siliconforks.com/jscoverage/">http://siliconforks.com/jscoverage/</a> for more information. |