File: test-parser.html

package info (click to toggle)
zeparser.js 0.0.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 324 kB
  • ctags: 313
  • sloc: makefile: 31
file content (26 lines) | stat: -rw-r--r-- 781 bytes parent folder | download | duplicates (4)
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
<!doctype html>
<html>
	<head>
		<title>Parser Test Suite Page</title>
		<style>
			input+span:hover { border-bottom: 1px solid red; cursor: pointer; }
			#cfg-menu { position: fixed; top:0; left: 0; background-color: white; }
			div { font-size: 11px; font-family: monospace; }
			.red { background-color: red; color: white; }
			.green { background-color: green; color: white; }
			hr { margin: 0; padding: 0; font-size: 1px; }
		</style>
	</head>
	<body>
		(c) qfox.nl<br/>
		Parser test suite<br/>
		<div>Running...</div>
		<script src="unicodecategories.js"></script>
		<script src="Tokenizer.js"></script>
		<script src="ZeParser.js"></script>
		<script src="tests.js"></script>
		<script>
			ZeParser.testSuite(Tests);
		</script>
	</body>
</html>