/js/lib/Socket.IO-node/support/expresso/deps/jscoverage/jscoverage.html
HTML | 125 lines | 89 code | 6 blank | 30 comment | 0 complexity | c489c8d3f45f29877304ec204254df6e MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
1<!DOCTYPE html> 2<!-- 3 jscoverage.html - code coverage for JavaScript 4 Copyright (C) 2007, 2008 siliconforks.com 5 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<link rel="stylesheet" type="text/css" href="jscoverage-highlight.css"> 25<link rel="stylesheet" type="text/css" href="jscoverage.css"> 26<!--[if IE]> 27<link rel="stylesheet" type="text/css" href="jscoverage-ie.css"> 28<![endif]--> 29<script type="text/javascript" src="jscoverage.js"></script> 30</head> 31 32<body onload="jscoverage_body_load();" onresize="jscoverage_body_resize();"> 33<div id="mainDiv"> 34<div id="headingDiv"> 35<h1>JSCoverage</h1> 36<div class="ProgressBar" id="progressBar"><span class="ProgressPercentage"></span><div class="ProgressGraph"><div class="ProgressCovered"></div></div></div> 37<span id="progressLabel"></span> 38</div> 39 40<div id="tabs" class="Tabs"> 41 <div id="browserTab"><img src="jscoverage-throbber.gif" alt=""> Browser <img src="jscoverage-throbber.gif" alt=""></div> 42 <div id="summaryTab"><img id="summaryThrobber" src="jscoverage-throbber.gif" alt=""> Summary <img src="jscoverage-throbber.gif" alt=""></div> 43 <div id="sourceTab" class="disabled"><img src="jscoverage-throbber.gif" alt=""> Source <img src="jscoverage-throbber.gif" alt=""></div> 44 <div id="storeTab"><img id="storeThrobber" src="jscoverage-throbber.gif" alt=""> Store <img src="jscoverage-throbber.gif" alt=""></div> 45 <div id="aboutTab"><img src="jscoverage-throbber.gif" alt=""> About <img src="jscoverage-throbber.gif" alt=""></div> 46</div> 47<div id="tabPages" class="TabPages"> 48 <div class="TabPage" id="browserTabPage"> 49 <div id="locationDiv"> 50 URL: <input id="location" type="text" size="70" onkeypress="jscoverage_input_keypress(event)"> 51 <button onclick="jscoverage_button_click();">Go</button> 52 </div> 53 <div id="iframeDiv"> 54 <iframe id="browserIframe" onload="jscoverage_browser_load();"></iframe> 55 </div> 56 </div> 57 <div class="TabPage"> 58 <input type="checkbox" id="checkbox" onclick="return jscoverage_checkbox_click();"> <label for="checkbox">Show missing statements column</label> 59 <div id="summaryDiv"> 60 <div id="summaryErrorDiv"></div> 61 <table id="summaryTable"> 62 <thead> 63 <tr id="headerRow"> 64 <th class="leftColumn">File</th> 65 <th><abbr title="The total number of executable statements">Statements</abbr></th> 66 <th><abbr title="The number of statements actually executed">Executed</abbr></th> 67 <th><abbr title="Number of executed statements as a percentage of total number of statements">Coverage</abbr></th> 68 </tr> 69 <tr id="summaryTotals"> 70 <td class="leftColumn"> 71 <span class="title">Total:</span> 72 <span>0</span> 73 </td> 74 <td class="numeric">0</td> 75 <td class="numeric">0</td> 76 <td class="coverage"> 77 <div class="pctGraph"> 78 <div class="covered"></div> 79 </div> 80 <span class="pct">0%</span> 81 </td> 82 </tr> 83 84 </thead> 85 <tbody id="summaryTbody"> 86 87 <!-- 88 <tr> 89 <td>0</td> 90 <td>0</td> 91 <td>0</td> 92 <td>0%</td> 93 <td>0</td> 94 </tr> 95 --> 96 97 </tbody> 98 </table> 99 </div> 100 </div> 101 <div class="TabPage"> 102 <div id="fileDiv"></div> 103 <div id="sourceDiv"></div> 104 </div> 105 <div class="TabPage" id="storeTabPage"> 106 <button id="storeButton" onclick="jscoverage_storeButton_click();">Store Report</button> 107 <img id="storeImg" src="jscoverage-throbber.gif" alt="loading..."> 108 <div id="storeDiv"></div> 109 </div> 110 <div class="TabPage"> 111 <p> 112 This is version 0.4 of JSCoverage, a program that calculates code 113 coverage statistics for JavaScript. 114 </p> 115 <p> 116 See <a href="http://siliconforks.com/jscoverage/">http://siliconforks.com/jscoverage/</a> for more information. 117 </p> 118 <p> 119 Copyright © 2007, 2008 siliconforks.com 120 </p> 121 </div> 122</div> 123</div> 124</body> 125</html>