Add tests for common javascript files

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8996 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2011-09-02 07:53:09 +00:00
parent 76999d3054
commit 8dfab7ec21
5 changed files with 1932 additions and 0 deletions

View file

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="qunit.css" type="text/css" />
<script type="text/javascript" src="../../../common/js/jquery.js"></script>
<script type="text/javascript" src="../../../common/js/common.js"></script>
<script type="text/javascript" src="../../../common/js/js_app.js"></script>
<script type="text/javascript" src="../../../common/js/xml_handler.js"></script>
<script type="text/javascript" src="../../../common/js/xml_js_filter.js"></script>
<script type="text/javascript" src="qunit.js"></script>
<script type="text/javascript" src="js_app.test.js"></script>
<script type="text/javascript" src="xml_js_filter.test.js"></script>
</head>
<body>
<h1 id="qunit-header">Common JavaScript Test</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture">
<!-- test markup -->
<div id="plugin-test"></div>
<form id="validator-test">
<input type="hidden" name="ruleset" value="ruleset" />
<input type="text" name="user_1" value="" />
<input type="text" name="user_2" value="" />
<input type="text" name="user_3" value="" />
<input type="checkbox" name="chkbox1" value="" />
<input type="checkbox" name="chkbox1" value="" />
</form>
</div>
</body>
</html>