44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test - generis.tree.select</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/generis.tree.select/test'], function(){
|
|
|
|
//Tests loaded, run tests
|
|
QUnit.start();
|
|
});
|
|
});
|
|
</script>
|
|
<style>
|
|
.tree ul .checked ins{
|
|
color: lightgreen;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture">
|
|
<div class="t10"></div>
|
|
<div class="t1000"></div>
|
|
</div>
|
|
<div id="qunit-fixture-visible">
|
|
<div class="t10"></div>
|
|
<div class="t1000"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|