File: index.html

package info (click to toggle)
node-css-tree 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,184 kB
  • sloc: javascript: 17,452; makefile: 5
file content (36 lines) | stat: -rw-r--r-- 814 bytes parent folder | download | duplicates (3)
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>