1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
<h2><%=appName%> <%=title%></h2>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td align="left">
<input type="button" value="Run All Tests" onclick="runAllTests()" />
</td>
<td align="left">
<input type="button" value="Clear All Results" onclick="clearAllResults()" />
</td>
<td align="right">
<div>(
<input type="checkbox" id="showSuccesses" checked="1" />
Show successes |
<input type="checkbox" id="hideUnrun" />
Hide unrun |
<input type="checkbox" id="profile" />
Profile |
<input type="checkbox" id="async" checked />
Asynchronous
)
</div>
</td>
</tr>
<tr>
<td align="left">
<input type="button" value="Expand All" onclick="expandAllResults()" />
</td>
<td align="left" >
<input type="button" value="Collapse All" onclick="collapseAllResults()" />
</td>
<td style="text-align:right">
Max parallel async requests
<input type="text" id="max_requests" value="8" size="2" />
</td>
</tr>
</table>
<p></p>
<div id="results"></div>
|