You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
727 B
28 lines
727 B
2 years ago
|
<html>
|
||
|
<head>
|
||
|
<title>MockXMLHttpRequest Tests</title>
|
||
|
<script type="text/javascript">
|
||
|
// Dojo configuration
|
||
|
djConfig = {
|
||
|
isDebug: true
|
||
|
};
|
||
|
</script>
|
||
|
<script type="text/javascript" src="../dojo.js"></script>
|
||
|
<script type="text/javascript" src="jsunit_browser.js"></script>
|
||
|
<script type="text/javascript" src="MockXMLHttpRequest.js"></script>
|
||
|
<script type="text/javascript" src="test_MockXMLHttpRequest.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
function init(){
|
||
|
dojo.debug("Starting MockXMLHttpRequest test");
|
||
|
test_MockXMLHttpRequest();
|
||
|
setTimeout(function() { dojo.debug("Tests complete");}, 1200);
|
||
|
}
|
||
|
|
||
|
dojo.addOnLoad(init);
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|
||
|
|