-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.html
42 lines (41 loc) · 1.31 KB
/
tests.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="lib/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="lib/qunit.js"></script>
<script type="text/javascript" src="lib/LinkedList.js"></script>
<script type="text/javascript" src="editor.js"></script>
<script type="text/javascript" src="tests.js"></script>
<link rel="stylesheet" href="lib/qunit.css" type="text/css"
media="screen" />
</head>
<body>
<h1 id="qunit-header">ExpEd Tests</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="controls">
</div>
<div id="buttons">
<input type="button" id="add-or" value="Add Or Operator" />
<input type="button" id="add-and" value="Add And Operator" />
<input type="button" id="group" value="Group/Ungroup Selected" />
<input type="button" id="show" value="Show Expression" />
<input type="button" id="unselect" value="Unselect All" />
<input type="button" id="remove" value="Remove Selected" />
<input type="button" id="clear-all" value="Clear All" />
</div>
<div id="expression">
</div>
</div>
<div id="text">
</div>
</body>
</html>