2011-07-26 16:15:02 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>jQuery UI Test Suite</title>
|
|
|
|
|
2012-11-14 20:22:01 +00:00
|
|
|
<script src="../../jquery-1.8.3.js"></script>
|
2011-07-26 16:15:02 +00:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="../../external/qunit.css">
|
2012-04-21 15:49:11 +00:00
|
|
|
<link rel="stylesheet" href="qunit-composite.css">
|
2011-07-26 16:15:02 +00:00
|
|
|
<script src="../../external/qunit.js"></script>
|
2012-04-21 15:49:11 +00:00
|
|
|
<script src="qunit-composite.js"></script>
|
2011-07-26 16:15:02 +00:00
|
|
|
|
|
|
|
<script>
|
2011-07-28 11:34:31 +00:00
|
|
|
(function() {
|
|
|
|
|
2011-07-28 18:50:06 +00:00
|
|
|
var params = [],
|
2011-07-28 11:34:31 +00:00
|
|
|
suites = [
|
|
|
|
"accordion/accordion.html",
|
|
|
|
"autocomplete/autocomplete.html",
|
|
|
|
"button/button.html",
|
|
|
|
"core/core.html",
|
|
|
|
"datepicker/datepicker.html",
|
|
|
|
"dialog/dialog.html",
|
2012-10-30 23:12:17 +00:00
|
|
|
"draggable/draggable.html",
|
2012-10-31 02:19:49 +00:00
|
|
|
"droppable/droppable.html",
|
2011-07-28 11:34:31 +00:00
|
|
|
"effects/effects.html",
|
|
|
|
"menu/menu.html",
|
|
|
|
"position/position.html",
|
|
|
|
"progressbar/progressbar.html",
|
2012-10-31 12:30:01 +00:00
|
|
|
"resizable/resizable.html",
|
2012-10-31 01:50:08 +00:00
|
|
|
"selectable/selectable.html",
|
2011-07-28 11:34:31 +00:00
|
|
|
"slider/slider.html",
|
2012-11-02 00:54:52 +00:00
|
|
|
"sortable/sortable.html",
|
2011-07-28 11:34:31 +00:00
|
|
|
"spinner/spinner.html",
|
|
|
|
"tabs/tabs.html",
|
|
|
|
"tooltip/tooltip.html",
|
|
|
|
"widget/widget.html"
|
|
|
|
];
|
|
|
|
|
|
|
|
$.each( QUnit.urlParams, function( key, value ) {
|
2011-07-28 18:50:06 +00:00
|
|
|
if ( key === "filter" ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
params.push( encodeURIComponent( key ) + "=" + encodeURIComponent( value ) );
|
2011-07-28 11:34:31 +00:00
|
|
|
});
|
2011-07-28 18:50:06 +00:00
|
|
|
if ( params.length ) {
|
|
|
|
params = "?" + params.join( "&" );
|
2011-07-28 11:34:31 +00:00
|
|
|
suites = $.map( suites, function( suite ) {
|
2011-07-28 18:50:06 +00:00
|
|
|
return suite + params;
|
2011-07-28 11:34:31 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
QUnit.testSuites( suites );
|
|
|
|
|
|
|
|
}());
|
2011-07-26 16:15:02 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h1 id="qunit-header">jQuery UI Test Suite</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">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|