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
|
<!doctype html>
<html>
<body>
<style>
body {
font-family: Tahoma, serif;
}
table {
border-collapse: collapse;
}
td {
vertical-align: top;
width: 50%;
}
.testcase {
margin: 2px 0;
padding: 2px 4px;
font-size: 11px;
background: #eee;
}
</style>
<select id="selectedMode" onChange="runMode(selectedMode.value)">
<option value="spec">spec
<option value="safe" selected>safe
</select>
<table>
<tr>
<td id="okTestsCount">
<td id="failedTestsCount">
<tr>
<td id="okTests">
<td id="failedTests">
</table>
<script src="script.js"></script>
</body>
</html>
|