~jstys-z/helioviewer.org/timeline

« back to all changes in this revision

Viewing changes to lib/jquery/jquery.ui-1.6rc2/tests/sortable.html

  • Committer: V. Keith Hughitt
  • Date: 2009-03-26 19:20:57 UTC
  • Revision ID: hughitt1@kore-20090326192057-u0x8rf8sf5lmmnwh
nightly build 03-26-2009: Using alpha-channel JPEG 2000 dataset

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html>
2
 
<html lang="en">
3
 
<head>
4
 
        <title>jQuery UI Sortable Test Suite</title>
5
 
 
6
 
        <link rel="stylesheet" href="qunit/testsuite.css" type="text/css" media="screen">
7
 
        
8
 
        <script type="text/javascript" src="../jquery-1.2.6.js"></script>
9
 
        <script type="text/javascript" src="../ui/ui.core.js"></script>
10
 
        <script type="text/javascript" src="../ui/ui.sortable.js"></script>
11
 
        
12
 
        <script type="text/javascript" src="qunit/testrunner.js"></script>
13
 
        <script type="text/javascript" src="simulate/jquery.simulate.js"></script>
14
 
        
15
 
        <script type="text/javascript" src="sortable.js"></script>
16
 
        
17
 
        <style type="text/css">
18
 
                html { border: 0; }
19
 
                #main {
20
 
                        position:absolute !important;
21
 
                        top: -1000px !important;
22
 
                        left: -1000px !important;
23
 
                }
24
 
        </style>
25
 
</head>
26
 
<body>
27
 
 
28
 
<h1 id="header">jQuery UI Sortable Test Suite</h1>
29
 
<h2 id="banner"></h2>
30
 
<h2 id="userAgent"></h2>
31
 
 
32
 
<ol id="tests"></ol>
33
 
 
34
 
<div id="main" style="border: 1px solid black; padding: 10px; margin: 10px;">
35
 
        <ul id="sortable">
36
 
                <li>Item 1</li>
37
 
                <li>Item 2</li>
38
 
                <li>Item 3</li>
39
 
                <li>Item 4</li>
40
 
                <li>Item 5</li>
41
 
        </ul>
42
 
</div>
43
 
 
44
 
</body>
45
 
</html>