File: unreleasedXHR.html

package info (click to toggle)
node-jquery 3.5.1%2Bdfsg%2B~3.5.5-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,712 kB
  • sloc: javascript: 34,777; php: 221; xml: 36; makefile: 15
file content (26 lines) | stat: -rw-r--r-- 654 bytes parent folder | download | duplicates (5)
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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Attempt to block tests because of dangling XHR requests (IE)</title>
<script src="../../jquery.js"></script>
<script src="../iframeTest.js"></script>
<script type="text/javascript">
window.onunload = function() {};
jQuery(function() {
	setTimeout(function() {
		var parent = window.parent;
		document.write("");
		startIframeTest();
	}, 200 );
	var number = 50;
	while( number-- ) {
		jQuery.ajax("../mock.php?action=wait&wait=10");
	}
});
</script>
</head>
<body>
<!-- empty body -->
</body>
</html>