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"> |
40 |
<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> |
41 |
<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> |
42 |
<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> |
43 |
<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> |
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="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>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><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 |
|
</tr> |
78 |
|
|
79 |
</thead> |
</thead> |
80 |
<tbody id="summaryTbody"> |
<tbody id="summaryTbody"> |
81 |
|
|