aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/resizable/resizable.html
blob: 08c4c8798455c1f33636ff6d5d5a6099766141ad (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
<!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 type="text/javascript" src="../../../jquery-1.4.2.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" src="resizable_tickets.js"></script>
	-->
	<script type="text/javascript">test("resizable", function() { ok(true, "disabled resizable testsuite"); });</script>
</head>
<body>

<h1 id="qunit-header">jQuery UI Resizable Test Suite</h1>
<h2 id="qunit-banner"></h2>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests">
</ol>

<div id="main" style="position: absolute; top: -10000px; left: -10000px;">
	<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>