/[jscoverage]/trunk/jscoverage.html
ViewVC logotype

Annotation of /trunk/jscoverage.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 265 - (hide annotations)
Thu Oct 9 04:09:10 2008 UTC (14 years, 5 months ago) by siliconforks
File MIME type: text/html
File size: 4198 byte(s)
Remove throbber images from tabs.
1 siliconforks 7 <!DOCTYPE html>
2 siliconforks 2 <!--
3     jscoverage.html - code coverage for JavaScript
4 siliconforks 87 Copyright (C) 2007, 2008 siliconforks.com
5 siliconforks 2
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 siliconforks 179 <link rel="stylesheet" type="text/css" href="jscoverage-highlight.css">
25 siliconforks 162 <link rel="stylesheet" type="text/css" href="jscoverage.css">
26 siliconforks 167 <!--[if IE]>
27     <link rel="stylesheet" type="text/css" href="jscoverage-ie.css">
28     <![endif]-->
29 siliconforks 162 <script type="text/javascript" src="jscoverage.js"></script>
30 siliconforks 2 </head>
31    
32 siliconforks 167 <body onload="jscoverage_body_load();" onresize="jscoverage_body_resize();">
33 siliconforks 7 <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 siliconforks 2
39 siliconforks 163 <div id="tabs" class="Tabs">
40 siliconforks 265 <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 siliconforks 163 </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 siliconforks 2 </div>
56 siliconforks 163 <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 siliconforks 4
83 siliconforks 163 </thead>
84     <tbody id="summaryTbody">
85 siliconforks 2
86 siliconforks 163 <!--
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 siliconforks 2
96 siliconforks 163 </tbody>
97     </table>
98 siliconforks 2 </div>
99     </div>
100 siliconforks 163 <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 &copy; 2007, 2008 siliconforks.com
119     </p>
120     </div>
121 siliconforks 2 </div>
122    
123     </body>
124     </html>

  ViewVC Help
Powered by ViewVC 1.1.24