jquery-ui/ui/tests/resizable.html

45 lines
1.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Language" content="en" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Resizable Test Page</title>
<link rel="stylesheet" href="../../qunit/testsuite.css" type="text/css" media="screen">
2008-05-24 22:30:03 +00:00
<script type="text/javascript" src="../../jquery/jquery-1.2.6.js"></script>
<script type="text/javascript" src="../source/ui.core.js"></script>
<script type="text/javascript" src="../source/ui.resizable.js"></script>
<script type="text/javascript" src="../../qunit/testrunner.js"></script>
<script type="text/javascript" src="resizable.js"></script>
<script type="text/javascript" src="jquery.useraction.js"></script>
</head>
2008-05-31 16:33:26 +00:00
<style>
/*.ui-fake-cursor {
position: absolute;
background: url(cursors/win/auto.png);
height: 32px; width: 32px;
top: 270px; left: 0px;
2008-05-31 16:33:26 +00:00
}*/
#main {
2008-05-31 17:08:21 +00:00
position:absolute !important;
2008-05-31 17:48:10 +00:00
top: -1000px !important;
left: -1000px !important;
}
2008-05-31 16:33:26 +00:00
</style>
<body>
<h1 id="header">jQuery Test Suite</h1>
<h2 id="banner"></h2>
<h2 id="userAgent"></h2>
<div id="main" style="border: 1px solid black; padding: 10px; margin: 10px;">
<div id='resizable1' style="background: green; width: 100px; height: 100px;">I'm a resizable.</div>
</div>
<ol id="tests"></ol>
<div class="ui-fake-cursor"/>
</body>
</html>