diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-05-23 13:32:32 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-05-23 13:32:32 +0000 |
commit | 63091e2c980047176b65639bf8f497c1a54aca56 (patch) | |
tree | 7d69097e09e292512ea9c5ba8d0480062181905a /ui | |
parent | 67f393fd7c9c62e13b5791472d20b9497fd3194a (diff) | |
download | jquery-ui-63091e2c980047176b65639bf8f497c1a54aca56.tar.gz jquery-ui-63091e2c980047176b65639bf8f497c1a54aca56.zip |
Diffstat (limited to 'ui')
-rw-r--r-- | ui/tests/draggable.html | 29 | ||||
-rw-r--r-- | ui/tests/draggable.js | 19 |
2 files changed, 48 insertions, 0 deletions
diff --git a/ui/tests/draggable.html b/ui/tests/draggable.html new file mode 100644 index 000000000..629252358 --- /dev/null +++ b/ui/tests/draggable.html @@ -0,0 +1,29 @@ +<!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>Draggable Test Page</title>
+<link rel="stylesheet" href="../../qunit/testsuite.css" type="text/css" media="screen">
+
+<script type="text/javascript" src="../../jquery/jquery-1.2.5.js"></script>
+<script type="text/javascript" src="../source/ui.core.js"></script>
+<script type="text/javascript" src="../source/ui.draggable.js"></script>
+
+<script type="text/javascript" src="../../qunit/testrunner.js"></script>
+<script type="text/javascript" src="draggable.js"></script>
+</head>
+<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='draggable1' style="background: green; width: 200px; height: 100px;">I'm a draggable.</div>
+ </div>
+
+ <ol id="tests"></ol>
+
+</body>
+</html>
diff --git a/ui/tests/draggable.js b/ui/tests/draggable.js new file mode 100644 index 000000000..f4b17b1ff --- /dev/null +++ b/ui/tests/draggable.js @@ -0,0 +1,19 @@ +$.fn.triggerKeydown = function(keyCode) {
+ return this.trigger("keydown", [$.event.fix({event:"keydown", keyCode: keyCode, target: this[0]})]);
+};
+
+
+$(document).ready(function() {
+
+ $("#draggable1").draggable();
+
+ module("draggable: simple drag & drop");
+
+ test("simple drag", function() {
+
+ expect(1);
+ ok(true, "Drag and drop element on the same position");
+
+ });
+
+});
\ No newline at end of file |