aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/resizable/resizable.html
blob: e29e94b16debc45855475e4a833ea00f086bee37 (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
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8" />
	<title>jQuery UI Resizable Test Suite</title>

	<link type="text/css" href="../../../themes/base/jquery.ui.resizable.css" rel="stylesheet" />

	<script src="../../jquery.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.mouse.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.resizable.js"></script>

	<link rel="stylesheet" href="../../../external/qunit.css" type="text/css"/>
	<script type="text/javascript" src="../../../external/qunit.js"></script>
	<script type="text/javascript" src="../../jquery.simulate.js"></script>
	<script type="text/javascript" src="../testsuite.js"></script>

	<script type="text/javascript" src="resizable_core.js"></script>
	<script type="text/javascript" src="resizable_defaults.js"></script>
	<script type="text/javascript" src="resizable_events.js"></script>
	<script type="text/javascript" src="resizable_methods.js"></script>
	<script type="text/javascript" src="resizable_options.js"></script>
	
	<script type="text/javascript">
	// disable this stale testsuite for testswarm only
	var url = window.location.search;
	url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + 9 ) );
	if ( url && url.indexOf("http") == 0 ) {
		// reset config to kill previous tests; make sure testsuite.js is loaded afterwards to init the testswarm script
		QUnit.init();
		test("resizable", function() { ok(true, "disabled resizable testsuite"); });
	}
	</script>
	<script type="text/javascript" src="../swarminject.js"></script>
</head>
<body>

<h1 id="qunit-header">jQuery UI Resizable 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 id="resizable1" style="background: green; width: 100px; height: 100px;">I'm a resizable.</div>
	<img src="images/test.jpg" id="resizable2" style="width: 100px; height: 100px;"/>
</div>

</body>
</html>