-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (74 loc) · 2.12 KB
/
index.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>BU CS320</title>
</head>
<body>
<h1>BU CS320 Stack Language Visualizer</h1>
<table style="height:100%; width:100%" summary="">
<tr>
<td style="text-align: left; height: 100%; width:40%;">
<textarea
id="input"
rows="40"
cols="100"
style="height: 100%; width: 90%; resize: none;"
></textarea>
</td>
<td style="vertical-align: top; width: 40%;">
<button id="begin" type="button" style="width: 60pt;">begin</button>
<button id="prev" type="button" style="width: 60pt;">prev</button>
<button id="next" type="button" style="width: 60pt;">next</button>
<button id="run" type="button" style="width: 60pt;">run</button><br><br>
<table style="width: 100%;">
<tr>
<td style="width: 60pt;"><tt>stack:</tt></td>
<td>
<textarea
id="stack"
rows="1"
style="width: 90%; resize: none; white-space: nowrap;"
readonly
></textarea>
</td>
</tr>
<tr>
<td style="width: 60pt;"><tt>trace:</tt></td>
<td>
<textarea
id="trace"
rows="1"
style="width: 90%; resize: none; white-space: nowrap;"
readonly
></textarea>
</td>
</tr>
<tr>
<td style="width: 60pt;"><tt>env:</tt></td>
<td>
<textarea
id="env"
rows="1"
style="width: 90%; resize: none; white-space: nowrap;"
readonly
></textarea>
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 60pt;"><tt>message:</tt></td>
<td>
<textarea
id="message"
rows="20"
style="width: 90%; resize: none"
readonly
></textarea>
</td>
</tr>
</table>
</td>
</tr>
</table><script src="visual2.bc.js" type= "text/javascript">
</script>
</body>
</html>