1 |
|
<!DOCTYPE html> |
2 |
<!-- |
<!-- |
3 |
scriptaculous.html - script.aculo.us unit tests for JSCoverage |
scriptaculous.html - script.aculo.us unit tests for JSCoverage |
4 |
Copyright (C) 2007 siliconforks.com |
Copyright (C) 2007 siliconforks.com |
23 |
<title>JSCoverage</title> |
<title>JSCoverage</title> |
24 |
<script src="scriptaculous-js-1.7.0/lib/prototype.js" type="text/javascript"></script> |
<script src="scriptaculous-js-1.7.0/lib/prototype.js" type="text/javascript"></script> |
25 |
<script src="scriptaculous-js-1.7.0/src/unittest.js" type="text/javascript"></script> |
<script src="scriptaculous-js-1.7.0/src/unittest.js" type="text/javascript"></script> |
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.js"></script> |
28 |
<script src="jscoverage.js" type="text/javascript"></script> |
<script src="jscoverage.js" type="text/javascript"></script> |
29 |
<link rel="stylesheet" href="scriptaculous-js-1.7.0/test/test.css" type="text/css"> |
<link rel="stylesheet" href="scriptaculous-js-1.7.0/test/test.css" type="text/css"> |
30 |
<link rel="stylesheet" href="jscoverage.css" type="text/css"> |
<link rel="stylesheet" href="jscoverage.css" type="text/css"> |
35 |
<div id="result"></div> |
<div id="result"></div> |
36 |
</div> |
</div> |
37 |
|
|
38 |
|
<div id="headingDiv"> |
39 |
|
<div id="progressBar" class="ProgressBar"><div class="pctGraph"><div class="covered"></div></div><span class="pct"></span></div> |
40 |
|
<div id="progressLabel"></div> |
41 |
|
<h1>JSCoverage</h1> |
42 |
|
</div> |
43 |
|
|
44 |
<div id="tabControl" class="TabControl"> |
<div id="tabControl" class="TabControl"> |
45 |
<div id="tabs" class="Tabs"> |
<div id="tabs" class="Tabs"> |
46 |
<div><img src="jscoverage-throbber.gif" alt="loading..."> Browser <img src="jscoverage-throbber.gif" alt="loading..."></div> |
<div id="browserTab"><img src="jscoverage-throbber.gif" alt="loading..."> Browser <img src="jscoverage-throbber.gif" alt="loading..."></div> |
47 |
<div id="summaryTab"><img src="jscoverage-throbber.gif" alt="loading..."> Summary <img src="jscoverage-throbber.gif" alt="loading..."></div> |
<div id="summaryTab"><img src="jscoverage-throbber.gif" alt="loading..."> Summary <img src="jscoverage-throbber.gif" alt="loading..."></div> |
48 |
<div id="sourceTab" class="disabled"><img id="throbberImg" src="jscoverage-throbber.gif" alt="loading..."> Source <img src="jscoverage-throbber.gif" alt="loading..."></div> |
<div id="sourceTab" class="disabled"><img id="throbberImg" src="jscoverage-throbber.gif" alt="loading..."> Source <img src="jscoverage-throbber.gif" alt="loading..."></div> |
49 |
<div><img src="jscoverage-throbber.gif" alt="loading..."> About <img src="jscoverage-throbber.gif" alt="loading..."></div> |
<div><img src="jscoverage-throbber.gif" alt="loading..."> About <img src="jscoverage-throbber.gif" alt="loading..."></div> |
57 |
<iframe id="browserIframe" onload="browser_load();"></iframe> |
<iframe id="browserIframe" onload="browser_load();"></iframe> |
58 |
</div> |
</div> |
59 |
<div class="TabPage"> |
<div class="TabPage"> |
60 |
|
<input type="checkbox" id="checkbox" onclick="return checkbox_click();"> <label for="checkbox">Show missing statements column</label> |
61 |
<div id="summaryDiv"> |
<div id="summaryDiv"> |
62 |
<table id="summaryTable"> |
<table id="summaryTable"> |
63 |
<thead> |
<thead> |
64 |
<tr> |
<tr id="headerRow"> |
65 |
<th>File</th> |
<th>File</th> |
66 |
<th><abbr title="The total number of executable statements">Statements</abbr></th> |
<th><abbr title="The total number of executable statements">Statements</abbr></th> |
67 |
<th><abbr title="The number of statements actually executed">Executed</abbr></th> |
<th><abbr title="The number of statements actually executed">Executed</abbr></th> |
68 |
<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><abbr title="List of statements missed during execution">Missing</abbr></th> |
|
69 |
</tr> |
</tr> |
70 |
<tr id="summaryTotals"> |
<tr id="summaryTotals"> |
71 |
<td class="totals"> |
<td class="totals"> |
80 |
</div> |
</div> |
81 |
<span class="pct">0%</span> |
<span class="pct">0%</span> |
82 |
</td> |
</td> |
|
<td></td> |
|
83 |
</tr> |
</tr> |
84 |
</thead> |
</thead> |
85 |
<tbody id="summaryTbody"> |
<tbody id="summaryTbody"> |
103 |
<div id="sourceDiv"></div> |
<div id="sourceDiv"></div> |
104 |
</div> |
</div> |
105 |
<div class="TabPage"> |
<div class="TabPage"> |
106 |
This is version 0.2 of JSCoverage, a program that calculates code |
This is version 0.3 of JSCoverage, a program that calculates code |
107 |
coverage statistics for JavaScript. |
coverage statistics for JavaScript. |
108 |
<p> |
<p> |
109 |
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. |