source: main/trunk/greenstone3/web/interfaces/oran/js/jquery-ui-1.8rc1/tests/unit/position/position.html@ 24245

Last change on this file since 24245 was 24245, checked in by sjb48, 13 years ago

Oran code for supporting format changes to document.

  • Property svn:executable set to *
File size: 1.6 KB
Line 
1<!doctype html>
2<html lang="en">
3<head>
4 <title>jQuery UI Position Test Suite</title>
5
6 <script type="text/javascript" src="../../../jquery-1.4.1.js"></script>
7 <script type="text/javascript" src="../../../ui/jquery.ui.position.js"></script>
8
9 <link type="text/css" href="../testsuite.css" rel="stylesheet" />
10 <script type="text/javascript" src="../../../external/testrunner-r6588.js"></script>
11 <script type="text/javascript" src="../testsuite.js"></script>
12
13 <script type="text/javascript" src="position_core.js"></script>
14</head>
15<body>
16
17<div id="main" style="top: 0; left: 0;">
18 <div id="el1" style="position: absolute; width: 6px; height: 6px;"></div>
19 <div id="el2" style="position: absolute; width: 6px; height: 6px;"></div>
20 <div id="parent" style="position: absolute; width: 6px; height: 6px; top: 4px; left: 4px;"></div>
21</div>
22
23<div style="position: absolute; top: 0px; left: 0px">
24 <div id="elx" style="position: absolute; width: 10px; height: 10px;"></div>
25 <div id="parentx" style="position: absolute; width: 20px; height: 20px; top: 40px; left: 40px;"></div>
26</div>
27
28<div style="position: absolute; top: 200px; left: 100px;">
29 <div id="el-offset-100-200" style="position: absolute; width: 10px; height: 10px;"></div>
30 <div style="position: absolute; top: 100px; left: 50px;">
31 <div id="el-two-offset-150-300" style="position: absolute; width: 10px; height: 10px;"></div>
32 <div id="el-fixed" style="position: fixed; top: 200px; left: 200px;"></div>
33 </div>
34</div>
35
36<div style="position: absolute; height: 5000px; width: 5000px;"></div>
37
38</body>
39</html>
Note: See TracBrowser for help on using the repository browser.