-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (35 loc) · 984 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="base64.js"></script>
<script src="caps.js"></script>
<script src="templates.js"></script>
<script src="basicfilters.js"></script>
<script src="advancedfilters.js"></script>
<script src="fuzzstart.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<input type="button" value="toggle Frame/Textarea" id="toggleVisibility">
<input type="button" value="next" id="nextButton">
<input type="button" value="Staaahp" id="stopButton"><br>
<iframe id="contentFrame" src="empty.html"></iframe><br>
<!-- This says "initializing..." -->
<textarea id="debug"></textarea><br>
<hr>
<div id="overflow">
<table id="resultTable">
<tr>
<th>Filter name</th>
<th>Context</th>
<th>Vector</th>
<th>Filtered</th>
<th>Status</th>
</tr>
</table>
</div>
</body>
</html>