blob: f89c57afed7cde4886a56dfc9ab6e52feedcafb8 (
plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<!DOCTYPE html>
<html>
<head>
<title>Coverage.py Javascript Test Suite</title>
<link rel="stylesheet" href="../qunit/qunit.css" type="text/css" media="screen">
<script type="text/javascript" src="../../coverage/htmlfiles/jquery-1.4.3.min.js"></script>
<script type="text/javascript" src="../../coverage/htmlfiles/coverage_html.js"></script>
<script type="text/javascript" src="../qunit/qunit.js"></script>
<style>
.red { background-color: red; }
.white { }
.blue { background-color: blue; }
</style>
<script type="text/javascript" src="tests.js"></script>
</head>
<body>
<h1 id="qunit-header">Coverage.py Javascript Test Suite</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture">
<div id='rrwwrr'>
<p class='t1 red'>red</p>
<p class='t2 red'>red</p>
<p class='t3 white'>white</p>
<p class='t4 white'>white</p>
<p class='t5 red'>red</p>
<p class='t6 red'>red</p>
</div>
<div id='rb'>
<p class='t1 red'>red</p>
<p class='t2 blue'>blue</p>
</div>
<div id='wrrwrrw'>
<p class='t1 white'>white</p>
<p class='t2 red'>red</p>
<p class='t3 red'>red</p>
<p class='t4 white'>white</p>
<p class='t5 red'>red</p>
<p class='t6 red'>red</p>
<p class='t7 white'>white</p>
</div>
<div id='rrrbbb'>
<p class='t1 red'>red</p>
<p class='t2 red'>red</p>
<p class='t3 red'>red</p>
<p class='t4 blue'>blue</p>
<p class='t5 blue'>blue</p>
<p class='t6 blue'>blue</p>
</div>
</div>
</body>
</html>
|