/[projects]/misc/horsensspejder-web/jquery/jquery-ui-1.10.3/tests/unit/all.html
ViewVC logotype

Contents of /misc/horsensspejder-web/jquery/jquery-ui-1.10.3/tests/unit/all.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2125 - (show annotations) (download) (as text)
Wed Mar 12 19:30:05 2014 UTC (10 years, 2 months ago) by torben
File MIME type: text/html
File size: 1625 byte(s)
initial import
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>jQuery UI Test Suite</title>
6
7 <script src="../../jquery-1.9.1.js"></script>
8
9 <link rel="stylesheet" href="../../external/qunit.css">
10 <link rel="stylesheet" href="qunit-composite.css">
11 <script src="../../external/qunit.js"></script>
12 <script src="qunit-composite.js"></script>
13
14 <script>
15 (function() {
16
17 var params = [],
18 suites = [
19 "accordion/accordion.html",
20 "autocomplete/autocomplete.html",
21 "button/button.html",
22 "core/core.html",
23 "datepicker/datepicker.html",
24 "dialog/dialog.html",
25 "dialog/dialog_deprecated.html",
26 "draggable/draggable.html",
27 "droppable/droppable.html",
28 "effects/effects.html",
29 "menu/menu.html",
30 "position/position.html",
31 "progressbar/progressbar.html",
32 "resizable/resizable.html",
33 "selectable/selectable.html",
34 "slider/slider.html",
35 "sortable/sortable.html",
36 "spinner/spinner.html",
37 "tabs/tabs.html",
38 "tooltip/tooltip.html",
39 "widget/widget.html"
40 ];
41
42 $.each( QUnit.urlParams, function( key, value ) {
43 if ( key === "filter" ) {
44 return;
45 }
46 params.push( encodeURIComponent( key ) + "=" + encodeURIComponent( value ) );
47 });
48 if ( params.length ) {
49 params = "?" + params.join( "&" );
50 suites = $.map( suites, function( suite ) {
51 return suite + params;
52 });
53 }
54 QUnit.testSuites( suites );
55
56 }());
57 </script>
58 </head>
59 <body>
60
61 <h1 id="qunit-header">jQuery UI Test Suite</h1>
62 <h2 id="qunit-banner"></h2>
63 <div id="qunit-testrunner-toolbar"></div>
64 <h2 id="qunit-userAgent"></h2>
65 <ol id="qunit-tests"></ol>
66 <div id="qunit-fixture">
67
68 </div>
69 </body>
70 </html>

  ViewVC Help
Powered by ViewVC 1.1.20