2010-03-12 03:18:34 +00:00
|
|
|
<!DOCTYPE html>
|
2010-01-01 12:09:54 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2010-03-12 03:18:34 +00:00
|
|
|
<meta charset="UTF-8" />
|
2010-01-01 12:09:54 +00:00
|
|
|
<title>jQuery UI Position Test Suite</title>
|
|
|
|
|
2010-11-12 14:19:26 +00:00
|
|
|
<script type="text/javascript" src="../../../jquery-1.4.4.js"></script>
|
2010-01-01 12:09:54 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.position.js"></script>
|
|
|
|
|
2010-02-25 11:09:39 +00:00
|
|
|
<link rel="stylesheet" href="../../../external/qunit.css" type="text/css"/>
|
|
|
|
<script type="text/javascript" src="../../../external/qunit.js"></script>
|
|
|
|
<script type="text/javascript" src="../../jquery.simulate.js"></script>
|
2010-01-01 12:09:54 +00:00
|
|
|
<script type="text/javascript" src="../testsuite.js"></script>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="position_core.js"></script>
|
2010-08-29 15:21:39 +00:00
|
|
|
|
|
|
|
<script type="text/javascript" src="../swarminject.js"></script>
|
2010-01-01 12:09:54 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2010-02-25 11:09:39 +00:00
|
|
|
<h1 id="qunit-header">jQuery UI Position Test Suite</h1>
|
|
|
|
<h2 id="qunit-banner"></h2>
|
2011-02-21 16:09:02 +00:00
|
|
|
<div id="qunit-testrunner-toolbar"></div>
|
2010-02-25 11:09:39 +00:00
|
|
|
<h2 id="qunit-userAgent"></h2>
|
|
|
|
<ol id="qunit-tests">
|
|
|
|
</ol>
|
|
|
|
|
2010-09-02 13:41:10 +00:00
|
|
|
<!--
|
|
|
|
elements smaller than 10px have a line-height set on them to avoid a bug in IE6
|
|
|
|
.height() returns the greater of the height and line-height
|
|
|
|
-->
|
|
|
|
|
2010-02-25 11:09:39 +00:00
|
|
|
<div id="main" style="position: absolute; top: 0; left: 0;">
|
2010-09-02 13:41:10 +00:00
|
|
|
<div id="el1" style="position: absolute; width: 6px; height: 6px; line-height: 6px;"></div>
|
|
|
|
<div id="el2" style="position: absolute; width: 6px; height: 6px; line-height: 6px;"></div>
|
|
|
|
<div id="parent" style="position: absolute; width: 6px; height: 6px; top: 4px; left: 4px; line-height: 6px;"></div>
|
2010-01-01 12:09:54 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="position: absolute; top: 0px; left: 0px">
|
2010-09-02 13:41:10 +00:00
|
|
|
<div id="elx" style="position: absolute; width: 10px; height: 10px; line-height: 10px;"></div>
|
2010-01-01 12:09:54 +00:00
|
|
|
<div id="parentx" style="position: absolute; width: 20px; height: 20px; top: 40px; left: 40px;"></div>
|
2009-07-24 18:24:13 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="position: absolute; top: 200px; left: 100px;">
|
2010-09-02 13:41:10 +00:00
|
|
|
<div id="el-offset-100-200" style="position: absolute; width: 10px; height: 10px; line-height: 10px;"></div>
|
2009-07-24 18:24:13 +00:00
|
|
|
<div style="position: absolute; top: 100px; left: 50px;">
|
2010-09-02 13:41:10 +00:00
|
|
|
<div id="el-two-offset-150-300" style="position: absolute; width: 10px; height: 10px; line-height: 10px;"></div>
|
2009-07-24 18:24:13 +00:00
|
|
|
<div id="el-fixed" style="position: fixed; top: 200px; left: 200px;"></div>
|
|
|
|
</div>
|
2010-01-01 12:09:54 +00:00
|
|
|
</div>
|
2009-07-24 18:24:13 +00:00
|
|
|
|
|
|
|
<div style="position: absolute; height: 5000px; width: 5000px;"></div>
|
2010-01-01 12:09:54 +00:00
|
|
|
|
2010-03-26 23:53:43 +00:00
|
|
|
<div id="bug-5280" style="height: 30px; width: 201px;">
|
|
|
|
<div style="width: 50px; height: 10px;"></div>
|
|
|
|
</div>
|
|
|
|
|
2010-01-01 12:09:54 +00:00
|
|
|
</body>
|
|
|
|
</html>
|