mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>jQuery UI Droppable Test Suite</title>
|
|
|
|
<link rel="stylesheet" href="qunit/testsuite.css" type="text/css" media="screen">
|
|
|
|
<script type="text/javascript" src="../jquery-1.2.6.js"></script>
|
|
<script type="text/javascript" src="../ui/ui.core.js"></script>
|
|
<script type="text/javascript" src="../ui/ui.draggable.js"></script>
|
|
<script type="text/javascript" src="../ui/ui.droppable.js"></script>
|
|
|
|
<script type="text/javascript" src="qunit/testrunner.js"></script>
|
|
<script type="text/javascript" src="simulate/jquery.simulate.js"></script>
|
|
|
|
<script type="text/javascript" src="droppable.js"></script>
|
|
|
|
<style type="text/css">
|
|
html { border: 0; }
|
|
#main {
|
|
top: -1000px;
|
|
left: -1000px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1 id="header">jQuery UI Droppable Test Suite</h1>
|
|
<h2 id="banner"></h2>
|
|
<h2 id="userAgent"></h2>
|
|
|
|
<ol id="tests"></ol>
|
|
|
|
<div id="main" style='position: absolute; width: 300px; height: 300px; overflow: auto;'>
|
|
<div id="draggable1" style="width: 25px; height: 25px;">Draggable</div>
|
|
<div id="droppable1" style="width: 100px; height: 100px;">Droppable</div>
|
|
<div style='width:1000px;height:1000px;'> </div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|