2011-08-03 21:12:44 +00:00
|
|
|
<!doctype html>
|
2009-01-07 03:31:15 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2011-08-03 21:12:44 +00:00
|
|
|
<meta charset="utf-8">
|
2009-01-07 03:31:15 +00:00
|
|
|
<title>jQuery UI Datepicker Test Suite</title>
|
|
|
|
|
2011-07-28 11:34:31 +00:00
|
|
|
<script src="../../jquery.js"></script>
|
2012-04-23 14:43:01 +00:00
|
|
|
<link rel="stylesheet" href="../../../external/qunit.css">
|
|
|
|
<script src="../../../external/qunit.js"></script>
|
|
|
|
<script src="../../jquery.simulate.js"></script>
|
|
|
|
<script src="../testsuite.js"></script>
|
2011-10-28 19:58:33 +00:00
|
|
|
<script>
|
2012-04-23 14:43:01 +00:00
|
|
|
TestHelpers.loadResources({
|
2011-10-28 19:58:33 +00:00
|
|
|
css: [ "ui.core", "ui.datepicker" ],
|
|
|
|
js: [
|
|
|
|
"ui/jquery.ui.core.js",
|
|
|
|
"ui/jquery.ui.datepicker.js",
|
|
|
|
"ui/i18n/jquery.ui.datepicker-fr.js",
|
|
|
|
"ui/i18n/jquery.ui.datepicker-he.js",
|
|
|
|
"ui/i18n/jquery.ui.datepicker-zh-CN.js"
|
|
|
|
]
|
|
|
|
});
|
|
|
|
</script>
|
2011-08-03 21:12:44 +00:00
|
|
|
|
|
|
|
<script src="datepicker_core.js"></script>
|
|
|
|
<script src="datepicker_defaults.js"></script>
|
|
|
|
<script src="datepicker_events.js"></script>
|
|
|
|
<script src="datepicker_methods.js"></script>
|
|
|
|
<script src="datepicker_options.js"></script>
|
|
|
|
<script src="datepicker_tickets.js"></script>
|
|
|
|
|
|
|
|
<script>
|
2010-04-14 18:19:20 +00:00
|
|
|
// disable this stale testsuite for testswarm only
|
|
|
|
var url = window.location.search;
|
|
|
|
url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + 9 ) );
|
|
|
|
if ( url && url.indexOf("http") == 0 ) {
|
|
|
|
// reset config to kill previous tests; make sure testsuite.js is loaded afterwards to init the testswarm script
|
|
|
|
QUnit.init();
|
|
|
|
test("datepicker", function() { ok(true, "disabled datepicker testsuite"); });
|
|
|
|
}
|
|
|
|
</script>
|
2011-08-03 21:12:44 +00:00
|
|
|
<script src="../swarminject.js"></script>
|
2009-01-07 03:31:15 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2010-02-25 11:09:39 +00:00
|
|
|
<h1 id="qunit-header">jQuery UI Datepicker Test Suite</h1>
|
|
|
|
<h2 id="qunit-banner"></h2>
|
2011-02-21 16:09:02 +00:00
|
|
|
<div id="qunit-testrunner-toolbar"></div>
|
2010-02-25 11:09:39 +00:00
|
|
|
<h2 id="qunit-userAgent"></h2>
|
2011-08-03 21:12:44 +00:00
|
|
|
<ol id="qunit-tests"></ol>
|
2011-02-23 11:46:13 +00:00
|
|
|
<div id="qunit-fixture">
|
2009-01-07 03:31:15 +00:00
|
|
|
|
2011-08-03 21:12:44 +00:00
|
|
|
<div><input type="text" id="inp"><input type="text" id="alt"><div id="inl"></div></div>
|
|
|
|
<p><input type="text" id="inp2"></p>
|
|
|
|
|
|
|
|
</div>
|
2009-01-07 03:31:15 +00:00
|
|
|
</body>
|
|
|
|
</html>
|