2011-08-03 21:12:44 +00:00
|
|
|
<!doctype html>
|
2009-01-07 03:31:15 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2011-08-03 21:12:44 +00:00
|
|
|
<meta charset="utf-8">
|
2009-01-07 03:31:15 +00:00
|
|
|
<title>jQuery UI Resizable Test Suite</title>
|
|
|
|
|
2011-07-28 11:34:31 +00:00
|
|
|
<script src="../../jquery.js"></script>
|
2012-04-23 14:43:01 +00:00
|
|
|
<link rel="stylesheet" href="../../../external/qunit.css">
|
|
|
|
<script src="../../../external/qunit.js"></script>
|
|
|
|
<script src="../../jquery.simulate.js"></script>
|
|
|
|
<script src="../testsuite.js"></script>
|
2011-10-28 19:58:33 +00:00
|
|
|
<script>
|
2012-04-23 14:43:01 +00:00
|
|
|
TestHelpers.loadResources({
|
2011-10-28 19:58:33 +00:00
|
|
|
css: [ "ui.core", "ui.resizable" ],
|
|
|
|
js: [
|
|
|
|
"ui/jquery.ui.core.js",
|
|
|
|
"ui/jquery.ui.widget.js",
|
|
|
|
"ui/jquery.ui.mouse.js",
|
|
|
|
"ui/jquery.ui.resizable.js"
|
|
|
|
]
|
|
|
|
});
|
|
|
|
</script>
|
2011-08-03 21:12:44 +00:00
|
|
|
|
2012-04-23 14:15:17 +00:00
|
|
|
<script src="resizable_common.js"></script>
|
2011-08-03 21:12:44 +00:00
|
|
|
<script src="resizable_core.js"></script>
|
|
|
|
<script src="resizable_events.js"></script>
|
|
|
|
<script src="resizable_methods.js"></script>
|
|
|
|
<script src="resizable_options.js"></script>
|
2012-11-03 20:17:16 +00:00
|
|
|
<script src="resizable_test_helpers.js"></script>
|
2011-08-03 21:12:44 +00:00
|
|
|
|
|
|
|
<script src="../swarminject.js"></script>
|
2012-07-10 08:02:25 +00:00
|
|
|
|
|
|
|
<style>
|
2012-12-03 15:36:55 +00:00
|
|
|
#container {
|
|
|
|
width: 300px;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
#resizable1 {
|
|
|
|
background: green;
|
|
|
|
height: 100px;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
#resizable2 {
|
|
|
|
height: 100px;
|
|
|
|
width: 100px;
|
|
|
|
}
|
2013-11-07 14:39:51 +00:00
|
|
|
#container2 {
|
|
|
|
position: relative;
|
|
|
|
width: 400px;
|
|
|
|
height: 400px;
|
|
|
|
margin: 30px 0 0 30px;
|
|
|
|
}
|
|
|
|
#parent {
|
|
|
|
position: relative;
|
|
|
|
width: 300px;
|
|
|
|
height: 300px;
|
|
|
|
}
|
|
|
|
#child {
|
|
|
|
position: relative;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
2012-07-10 08:02:25 +00:00
|
|
|
</style>
|
2009-01-07 03:31:15 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2010-02-25 11:09:39 +00:00
|
|
|
<h1 id="qunit-header">jQuery UI Resizable 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>
|
2011-08-03 21:12:44 +00:00
|
|
|
<ol id="qunit-tests"></ol>
|
2011-02-23 11:46:13 +00:00
|
|
|
<div id="qunit-fixture">
|
2009-01-07 03:31:15 +00:00
|
|
|
|
2012-12-03 15:36:55 +00:00
|
|
|
<div id="container">
|
|
|
|
<div id="resizable1">I'm a resizable.</div>
|
|
|
|
</div>
|
2013-11-07 14:39:51 +00:00
|
|
|
|
|
|
|
<div id="container2">
|
|
|
|
<div id="parent">
|
|
|
|
<div id="child">I'm a resizable.</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-07-10 08:02:25 +00:00
|
|
|
<img src="images/test.jpg" id="resizable2" alt="solid gray">
|
2011-08-03 21:12:44 +00:00
|
|
|
|
|
|
|
</div>
|
2009-01-07 03:31:15 +00:00
|
|
|
</body>
|
|
|
|
</html>
|