-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqunitTest.html
52 lines (39 loc) · 1.79 KB
/
qunitTest.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JQunit Tests</title>
<link rel="stylesheet" href="css/qunit-1.11.0.css">
<link rel="stylesheet" type="text/css" href="css/jquery-ui-1.10.0.custom.css">
<link rel="stylesheet" type="text/css" href="css/media.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="js/qunit-1.11.0.js"></script>
<!-- Scripts need to be tested -->
<script src="js/util.js"></script>
<script src="js/chat.js"></script>
<script src="js/qunitTest.js"></script>
<div id = "nickName" style = "display:none">nickNameForTest</div>
<div id = "undreadMsg" style = "display:none"></div>
<div style = "display:none">
<input type="checkbox" name="music" value = '0'/> African <br>
<input type="checkbox" name="music" value = '1'/> Blues <br>
<input type="checkbox" name="music" value = '2'/> Caribbean <br>
<input type="checkbox" name="music" value = '3'/> Classical <br>
<input type="checkbox" name="music" value = '4' checked = "true"/> Country <br>
<input type="checkbox" name="music" value = '5'/> Electronic <br>
<input type="checkbox" name="music" value = '6'/> Jazz <br>
<input type="checkbox" name="music" value = '7'/> Latin <br>
<input type="checkbox" name="music" value = '8' checked = "true" /> R&B <br>
<input type="checkbox" name="music" value = '9'/> Rap <br>
<input type="checkbox" name="music" value = '10'/> HipHop <br>
<input type="checkbox" name="music" value = '11' checked = "true"/> Rock <br>
</div>
<div id = "displayPlace" style = "display:none"></div>
<div id = "chatwith">testChatter</div>
</body>
</html>