-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (31 loc) · 984 Bytes
/
index.html
File metadata and controls
36 lines (31 loc) · 984 Bytes
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>jquery-afterresize: Tests</title>
<link rel="stylesheet" href="../lib/qunit.css">
</head>
<body>
<form>
<p>
Select jQuery version:
<select id="version">
<option value="1.4.4" selected>1.4.4</option>
<option value="1.4.2">1.4.2</option>
</select>
</p>
</form>
<h1 id="qunit-header">jquery-afterresize: Tests</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<script>
document.write('<script src="../lib/jquery-' + (location.hash ? location.hash.substring(1) : "1.4.4") + '.min.js"></scr' + 'ipt>');
</script>
<script src="../lib/jquery.ba-resize.min.js"></script>
<script src="../jquery.afterresize.js"></script>
<script src="../lib/qunit.js"></script>
<script src="tests.js"></script>
</body>
</html>