jquery-ui/tests/droppable.html

28 lines
959 B
HTML
Raw Normal View History

2008-11-19 06:09:48 +00:00
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Droppable Test Suite</title>
<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>
<link type="text/css" href="testsuite.css" rel="stylesheet" />
<script type="text/javascript" src="testsuite.js"></script>
2008-11-19 06:09:48 +00:00
<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>
</head>
<body>
<div id="main">
2008-11-19 06:09:48 +00:00
<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;'>&nbsp;</div>
2008-11-19 06:09:48 +00:00
</div>
</body>
</html>