2011-07-26 16:15:02 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>jQuery UI Test Suite</title>
|
|
|
|
|
2014-08-01 16:25:14 +00:00
|
|
|
<script src="../../external/jquery/jquery.js"></script>
|
2011-07-26 16:15:02 +00:00
|
|
|
|
2014-06-10 11:55:45 +00:00
|
|
|
<link rel="stylesheet" href="../../external/qunit/qunit.css">
|
2015-04-06 13:51:10 +00:00
|
|
|
<link rel="stylesheet" href="../../external/qunit-composite/qunit-composite.css">
|
2014-06-10 11:55:45 +00:00
|
|
|
<script src="../../external/qunit/qunit.js"></script>
|
2015-04-06 13:51:10 +00:00
|
|
|
<script src="../../external/qunit-composite/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",
|
2016-07-08 16:51:44 +00:00
|
|
|
"checkboxradio/checkboxradio.html",
|
|
|
|
"controlgroup/controlgroup.html",
|
2011-07-28 11:34:31 +00:00
|
|
|
"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",
|
2015-04-23 19:11:41 +00:00
|
|
|
"form-reset-mixin/form-reset-mixin.html",
|
2011-07-28 11:34:31 +00:00
|
|
|
"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",
|
2016-07-08 16:51:44 +00:00
|
|
|
"selectmenu/selectmenu.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>
|
|
|
|
|
2014-02-20 16:02:23 +00:00
|
|
|
<div id="qunit"></div>
|
2011-07-26 16:15:02 +00:00
|
|
|
<div id="qunit-fixture">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|