mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-05-24 00:24:07 +03:00
Merge commit 'd21ea7816e
' as 'jquery-ui'
This commit is contained in:
commit
e904a80717
629 changed files with 341074 additions and 0 deletions
66
jquery-ui/tests/unit/all.html
Normal file
66
jquery-ui/tests/unit/all.html
Normal file
|
@ -0,0 +1,66 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jQuery UI Test Suite</title>
|
||||
|
||||
<script src="../../external/jquery/jquery.js"></script>
|
||||
|
||||
<link rel="stylesheet" href="../../external/qunit/qunit.css">
|
||||
<link rel="stylesheet" href="qunit-composite.css">
|
||||
<script src="../../external/qunit/qunit.js"></script>
|
||||
<script src="qunit-composite.js"></script>
|
||||
|
||||
<script>
|
||||
(function() {
|
||||
|
||||
var params = [],
|
||||
suites = [
|
||||
"accordion/accordion.html",
|
||||
"autocomplete/autocomplete.html",
|
||||
"button/button.html",
|
||||
"core/core.html",
|
||||
"core/core_deprecated.html",
|
||||
"datepicker/datepicker.html",
|
||||
"dialog/dialog.html",
|
||||
"draggable/draggable.html",
|
||||
"droppable/droppable.html",
|
||||
"effects/effects.html",
|
||||
"menu/menu.html",
|
||||
"position/position.html",
|
||||
"progressbar/progressbar.html",
|
||||
"resizable/resizable.html",
|
||||
"selectable/selectable.html",
|
||||
"slider/slider.html",
|
||||
"sortable/sortable.html",
|
||||
"spinner/spinner.html",
|
||||
"tabs/tabs.html",
|
||||
"tooltip/tooltip.html",
|
||||
"widget/widget.html"
|
||||
];
|
||||
|
||||
$.each( QUnit.urlParams, function( key, value ) {
|
||||
if ( key === "filter" ) {
|
||||
return;
|
||||
}
|
||||
params.push( encodeURIComponent( key ) + "=" + encodeURIComponent( value ) );
|
||||
});
|
||||
if ( params.length ) {
|
||||
params = "?" + params.join( "&" );
|
||||
suites = $.map( suites, function( suite ) {
|
||||
return suite + params;
|
||||
});
|
||||
}
|
||||
QUnit.testSuites( suites );
|
||||
|
||||
}());
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="qunit"></div>
|
||||
<div id="qunit-fixture">
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue