mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
ecd8ddea33
- Update QUnit to 1.23.1 - Remove unused dl#dl from test/index.html - Remove unused map#imgmap from test/index.html - Ensure all urls to data use baseURI - Add the 'grunt karma:main' task - customContextFile & customDebugFile - Add 'npm run jenkins' script Close gh-3744 Fixes gh-1999
27 lines
654 B
HTML
27 lines
654 B
HTML
<!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>
|