mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
61 lines
1.9 KiB
HTML
61 lines
1.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery UI Draggable Test Suite</title>
|
|
|
|
<script src="../../jquery.js"></script>
|
|
<script src="../../resource_loader.js"></script>
|
|
<script>
|
|
loadResources({
|
|
css: [ "ui.core" ],
|
|
js: [
|
|
"ui/jquery.ui.core.js",
|
|
"ui/jquery.ui.widget.js",
|
|
"ui/jquery.ui.mouse.js",
|
|
"ui/jquery.ui.draggable.js"
|
|
]
|
|
});
|
|
</script>
|
|
|
|
<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="draggable_core.js"></script>
|
|
<script src="draggable_defaults.js"></script>
|
|
<script src="draggable_events.js"></script>
|
|
<script src="draggable_methods.js"></script>
|
|
<script src="draggable_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("draggable", function() { ok(true, "disabled draggable testsuite"); });
|
|
}
|
|
</script>
|
|
<script src="../swarminject.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1 id="qunit-header">jQuery UI Draggable Test Suite</h1>
|
|
<h2 id="qunit-banner"></h2>
|
|
<div id="qunit-testrunner-toolbar"></div>
|
|
<h2 id="qunit-userAgent"></h2>
|
|
<ol id="qunit-tests"></ol>
|
|
<div id="qunit-fixture">
|
|
|
|
<div id="draggable1" style="background: green; width: 200px; height: 100px;">Relative</div>
|
|
<div id="draggable2" style="background: green; width: 200px; height: 100px; position: absolute; top: 10px; left: 10px;"><span>Absolute</span></div>
|
|
<div style='width: 1px; height: 1000px;'></div>
|
|
<div style="position: absolute; width: 1px; height: 2000px;"></div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|