/[projects]/misc/horsensspejder-web/jquery/jquery-ui-1.10.3/tests/unit/sortable/sortable.html
ViewVC logotype

Contents of /misc/horsensspejder-web/jquery/jquery-ui-1.10.3/tests/unit/sortable/sortable.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2125 - (show annotations) (download) (as text)
Wed Mar 12 19:30:05 2014 UTC (10 years, 2 months ago) by torben
File MIME type: text/html
File size: 1945 byte(s)
initial import
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>jQuery UI Sortable Test Suite</title>
6
7 <script src="../../jquery.js"></script>
8 <link rel="stylesheet" href="../../../external/qunit.css">
9 <script src="../../../external/qunit.js"></script>
10 <script src="../../jquery.simulate.js"></script>
11 <script src="../testsuite.js"></script>
12 <script>
13 TestHelpers.loadResources({
14 css: [ "ui.core" ],
15 js: [
16 "ui/jquery.ui.core.js",
17 "ui/jquery.ui.widget.js",
18 "ui/jquery.ui.mouse.js",
19 "ui/jquery.ui.sortable.js"
20 ]
21 });
22 </script>
23
24 <script src="sortable_common.js"></script>
25 <script src="sortable_core.js"></script>
26 <script src="sortable_events.js"></script>
27 <script src="sortable_methods.js"></script>
28 <script src="sortable_options.js"></script>
29 <script src="sortable_test_helpers.js"></script>
30
31 <script src="../swarminject.js"></script>
32 <style>
33 #sortable, #sortable2 {
34 position:relative;
35 top:0;
36 left:0;
37 padding: 0;
38 margin: 1px;
39 border-width: 0;
40 }
41 #sortable li{
42 padding: 0;
43 margin: 0;
44 border-width: 0;
45 height:19px;
46 }
47 #sortable-table {
48 width: 100%;
49 }
50 </style>
51 </head>
52 <body>
53
54 <h1 id="qunit-header">jQuery UI Sortable Test Suite</h1>
55 <h2 id="qunit-banner"></h2>
56 <div id="qunit-testrunner-toolbar"></div>
57 <h2 id="qunit-userAgent"></h2>
58 <ol id="qunit-tests"></ol>
59 <div id="qunit-fixture">
60
61 <ul id="sortable">
62 <li>Item 1</li>
63 <li>Item 2</li>
64 <li>Item 3</li>
65 <li>Item 4</li>
66 <li>Item 5</li>
67 </ul>
68
69 <table id="sortable-table">
70 <tbody>
71 <tr>
72 <td>1</td>
73 <td>2</td>
74 </tr>
75 <tr>
76 <td>3</td>
77 <td>4</td>
78 </tr>
79 <tr>
80 <td>5</td>
81 <td>6</td>
82 </tr>
83 <tr>
84 <td>7</td>
85 <td>8</td>
86 </tr>
87 </tbody>
88 </table>
89
90 <div id="sortable-images">
91 <img src="../images/jqueryui_32x32.png" alt="">
92 <img src="../images/jqueryui_32x32.png" alt="">
93 <img src="../images/jqueryui_32x32.png" alt="">
94 <img src="../images/jqueryui_32x32.png" alt="">
95 </div>
96
97 </div>
98 </body>
99 </html>

  ViewVC Help
Powered by ViewVC 1.1.20