aboutsummaryrefslogtreecommitdiffstats
path: root/97suifangqa/apps/indicator/static/plugins/jquery-ui/tests/unit/all.html
blob: ba96feef2dea3d748e3b65e64376a3b3bc4278e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>jQuery UI Test Suite</title>

	<script src="../../jquery-1.9.1.js"></script>

	<link rel="stylesheet" href="../../external/qunit.css">
	<link rel="stylesheet" href="qunit-composite.css">
	<script src="../../external/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",
			"datepicker/datepicker.html",
			"dialog/dialog.html",
			"dialog/dialog_deprecated.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>

<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>