1 |
|
<!DOCTYPE html> |
2 |
<!-- |
<!-- |
3 |
jscoverage.html - code coverage for JavaScript |
jscoverage.html - code coverage for JavaScript |
4 |
Copyright (C) 2007 siliconforks.com |
Copyright (C) 2007 siliconforks.com |
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="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.min.js"></script> |
<script type="text/javascript" src="sh_main.js"></script> |
27 |
<script type="text/javascript" src="sh_javascript.min.js"></script> |
<script type="text/javascript" src="sh_javascript.min.js"></script> |
28 |
<script type="text/javascript" src="jscoverage.js"></script> |
<script type="text/javascript" src="jscoverage.js"></script> |
29 |
</head> |
</head> |
30 |
|
|
31 |
<body onload="body_load();" onresize="body_resize();"> |
<body onload="body_load();" onresize="body_resize();"> |
32 |
<h1>JSCoverage <span id="processingSpan">(working ...)</span></h1> |
<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"> |
<div id="tabControl" class="TabControl"> |
39 |
<div id="tabs" class="Tabs"> |
<div id="tabs" class="Tabs"> |
59 |
<th><abbr title="The total number of executable statements">Statements</abbr></th> |
<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> |
<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> |
<th><abbr title="Number of executed statements as a percentage of total number of statements">Coverage</abbr></th> |
62 |
<th><abbr title="List of statements missed during execution">Missing</abbr></th> |
<th id="missingHeader"><abbr title="List of statements missed during execution">Missing</abbr></th> |
63 |
</tr> |
</tr> |
64 |
|
<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 |
|
<td id="missingCell"></td> |
78 |
|
</tr> |
79 |
|
|
80 |
</thead> |
</thead> |
81 |
<tbody id="summaryTbody"> |
<tbody id="summaryTbody"> |
82 |
|
|