File: async.html

package info (click to toggle)
node-he 1.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,612 kB
  • sloc: javascript: 19,100; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 672 bytes parent folder | download | duplicates (2)
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>
	<meta charset="UTF-8">
	<title>QUnit Test Suite</title>
	<link rel="stylesheet" href="../qunit/qunit.css">
</head>
<body>
	<div id="qunit"></div>
	<div id="qunit-fixture">test markup</div>
	<script src="../qunit/qunit.js"></script>
	<script>
	QUnit.config.autostart = false;

	// Simulate a delay in loading the tests, as when they are loaded
	// asynchronously using requirejs, steal, etc.
	setTimeout(function() {
		var script = document.createElement( "script" );
		script.src = "async.js";
		document.getElementsByTagName( "head" )[0].appendChild( script );

	}, 1000);
	</script>
	<script src="swarminject.js"></script>
</body>
</html>