tao-test/app/tao/views/js/test/iframeResizer/test.html

41 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test - Url Parser</title>
<base href="../../../" />
<link rel="stylesheet" type="text/css" href="js/lib/qunit/qunit.css">
<script type="text/javascript" src="js/lib/qunit/qunit.js"></script>
<script type="text/javascript" src="js/lib/require.js"></script>
<script type="text/javascript">
//don't start the test now
QUnit.config.autostart = false;
//load the config
require(['/tao/ClientConfig/config'], function(){
//load the test
require(['test/iframeResizer/test'], function(){
//Tests loaded, run tests
QUnit.start();
});
});
</script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture">
<iframe id="iframe1"></iframe>
<iframe id="iframe2"></iframe>
<iframe id="iframe3"></iframe>
</div>
<!--<div>-->
<!--<iframe id="visible-iframe"></iframe>-->
<!--</div>-->
</body>
</html>