jquery-ui/tests/unit/droppable/droppable.html

53 lines
1.8 KiB
HTML
Raw Normal View History

2011-08-03 21:12:44 +00:00
<!doctype html>
2009-01-07 03:31:15 +00:00
<html lang="en">
<head>
2011-08-03 21:12:44 +00:00
<meta charset="utf-8">
2009-01-07 03:31:15 +00:00
<title>jQuery UI Droppable Test Suite</title>
<script src="../../jquery.js"></script>
2011-08-03 21:12:44 +00:00
<script src="../../../ui/jquery.ui.core.js"></script>
<script src="../../../ui/jquery.ui.widget.js"></script>
<script src="../../../ui/jquery.ui.mouse.js"></script>
<script src="../../../ui/jquery.ui.draggable.js"></script>
<script src="../../../ui/jquery.ui.droppable.js"></script>
2009-01-07 03:31:15 +00:00
2011-08-03 21:12:44 +00:00
<link rel="stylesheet" href="../../../external/qunit.css">
<script src="../../../external/qunit.js"></script>
<script src="../../jquery.simulate.js"></script>
<script src="../testsuite.js"></script>
<script src="droppable_core.js"></script>
<script src="droppable_defaults.js"></script>
<script src="droppable_events.js"></script>
<script src="droppable_methods.js"></script>
<script src="droppable_options.js"></script>
<script>
// disable this stale testsuite for testswarm only
var url = window.location.search;
url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + 9 ) );
if ( url && url.indexOf("http") == 0 ) {
// reset config to kill previous tests; make sure testsuite.js is loaded afterwards to init the testswarm script
QUnit.init();
test("droppable", function() { ok(true, "disabled droppable testsuite"); });
}
</script>
2011-08-03 21:12:44 +00:00
<script src="../swarminject.js"></script>
2009-01-07 03:31:15 +00:00
</head>
<body>
<h1 id="qunit-header">jQuery UI Droppable Test Suite</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
2011-08-03 21:12:44 +00:00
<ol id="qunit-tests"></ol>
<div id="qunit-fixture">
2009-01-07 03:31:15 +00:00
2011-08-03 21:12:44 +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>
</div>
2009-01-07 03:31:15 +00:00
</body>
</html>