aboutsummaryrefslogtreecommitdiffstats
path: root/tests/selectable.html
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-06-09 05:40:24 +0000
committerRichard Worth <rdworth@gmail.com>2008-06-09 05:40:24 +0000
commit665f17ce2c12105697b98655a6c398dd2ad63b2f (patch)
tree2d8178aa520e40ab4bf7cfd77f3483e5d6104612 /tests/selectable.html
parent279b579ba5c88c11127eaef1abc6e6ec88d7abc8 (diff)
downloadjquery-ui-665f17ce2c12105697b98655a6c398dd2ad63b2f.tar.gz
jquery-ui-665f17ce2c12105697b98655a6c398dd2ad63b2f.zip
tests - added selectable unit tests
Diffstat (limited to 'tests/selectable.html')
-rw-r--r--tests/selectable.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/selectable.html b/tests/selectable.html
new file mode 100644
index 000000000..7f959ae87
--- /dev/null
+++ b/tests/selectable.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <title>jQuery UI Selectable Test Suite</title>
+
+ <link rel="stylesheet" href="qunit/testsuite.css" type="text/css" media="screen">
+ <!--link rel="stylesheet" href="../themes/flora/flora.selectable.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.selectable.js"></script>
+ <script type="text/javascript" src="../ui/ui.draggable.js"></script>
+ <script type="text/javascript" src="../ui/ui.resizable.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="selectable.js"></script>
+
+ <style type="text/css">
+ html { border: 0; }
+ </style>
+
+
+
+</head>
+<body class="flora">
+
+<h1 id="header">jQuery UI Selectable Test Suite</h1>
+<h2 id="banner"></h2>
+<h2 id="userAgent"></h2>
+
+<ol id="tests"></ol>
+
+<div id="main" style="position: absolute; top: -10000px; border: 1px solid black; padding: 10px; margin: 10px;">
+ <ul id="selectable1">
+ <li>Item 1</li>
+ <li>Item 2</li>
+ <li class="special">Item 3</li>
+ <li>Item 4</li>
+ <li>Item 5</li>
+ </ul>
+</div>
+
+</body>
+</html>