mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
56 lines
1.3 KiB
HTML
56 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery UI Test Suite</title>
|
|
|
|
<script src="../jquery-1.7.1.js"></script>
|
|
|
|
<link rel="stylesheet" href="../../external/qunit.css">
|
|
<script src="../../external/qunit.js"></script>
|
|
<script src="testsuites.js"></script>
|
|
|
|
<script>
|
|
var params = "";
|
|
var suites = [
|
|
"accordion/accordion.html",
|
|
"autocomplete/autocomplete.html",
|
|
"button/button.html",
|
|
"core/core.html",
|
|
"datepicker/datepicker.html",
|
|
"dialog/dialog.html",
|
|
"draggable/draggable.html",
|
|
"droppable/droppable.html",
|
|
"position/position.html",
|
|
"progressbar/progressbar.html",
|
|
"resizable/resizable.html",
|
|
"selectable/selectable.html",
|
|
"slider/slider.html",
|
|
"sortable/sortable.html",
|
|
"tabs/tabs.html",
|
|
"widget/widget.html"
|
|
];
|
|
$.each( QUnit.urlParams, function( key, value ) {
|
|
params += encodeURIComponent( key ) + "=" + encodeURIComponent( value );
|
|
});
|
|
if ( params ) {
|
|
suites = $.map( suites, function( suite ) {
|
|
return suite + "?" + params;
|
|
});
|
|
}
|
|
QUnit.testSuites( suites );
|
|
</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>
|