Skip to content

Commit

Permalink
tests: resizable - Added visual test for ticket #4217
Browse files Browse the repository at this point in the history
  • Loading branch information
rdworth committed Mar 2, 2009
1 parent 52f8071 commit 58afe89
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions tests/visual/resizable/resizable_ticket_4217.html
@@ -0,0 +1,43 @@
<!doctype html>
<html lang="en">
<head>
<title>Resizable Visual Test : Resizable ticket #4217</title>
<link rel="stylesheet" href="../visual.css" type="text/css" />
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" />
<script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
<script type="text/javascript" src="../../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../../ui/ui.resizable.js"></script>
<script type="text/javascript">
$(function() {
$("#resizable").resizable({
handles: 'all',
containment: 'parent'
});
});
</script>
<style type="text/css">
#rprnt { width: 425px; height: 200px; border: 1px solid black; }
#resizable { background: #cec; height: 100px; border: 1px dotted gray; }
.ui-resizable-handle { width: 8px; height: 8px; border: 1px solid rgb(128, 128, 128); background: rgb(242, 242, 242); }
.ui-resizable-n, .ui-resizable-s { left: 45%; }
.ui-resizable-e, .ui-resizable-w { top: 45%; }
.ui-resizable-se { bottom: -5px; right: -5px; }
</style>
</head>
<body>

<h1 class="ui-widget-header"><a href="http://dev.jqueryui.com/ticket/4217">#4217 - Resizable: displacement of element (in case of constraint resize area)</a></h1>
<img src="http://dev.jqueryui.com/raw-attachment/ticket/4217/resizable.PNG">

<div id="rprnt">

<div id="resizable">
<p>
Resizable
</p>
</div>

</div>

</body>
</html>

0 comments on commit 58afe89

Please sign in to comment.