-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathrungames.html
33 lines (32 loc) · 1001 Bytes
/
rungames.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
<!-- saved from url=(0014)about:internet -->
<html>
<head>
<title>Test harness</title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" src="js/garbochess.js"></script>
<script type="text/javascript" src="tests/openings.js"></script>
<script type="text/javascript" src="js/boardui.js"></script>
<script type="text/javascript" src="js/tourney.js"></script>
<script type="text/javascript">
$(document).ready(function () {
ResetGame();
TestGames();
});
</script>
<style type="text/css">
#FenTextBox {
width: 400px;
}
</style>
</head>
<body>
<center>
<div id='board'>
</div>
<span id='output'>output</span><br/>
<textarea cols='50' rows='6' id='PgnTextBox'></textarea><br/>
FEN: <input id='FenTextBox'/>
</center>
</body>
</html>