diff options
author | Richard Worth <rdworth@gmail.com> | 2009-03-02 10:05:19 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-03-02 10:05:19 +0000 |
commit | 58afe89127d168dbb2b852d0da6efa0a36837a77 (patch) | |
tree | ca13cde3fdbdab4f35e0308126358471d4a90edf /tests/visual/resizable/resizable_ticket_4217.html | |
parent | 52f8071fc60e6478bb712531c81f699631b31810 (diff) | |
download | jquery-ui-58afe89127d168dbb2b852d0da6efa0a36837a77.tar.gz jquery-ui-58afe89127d168dbb2b852d0da6efa0a36837a77.zip |
tests: resizable - Added visual test for ticket #4217
Diffstat (limited to 'tests/visual/resizable/resizable_ticket_4217.html')
-rw-r--r-- | tests/visual/resizable/resizable_ticket_4217.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/visual/resizable/resizable_ticket_4217.html b/tests/visual/resizable/resizable_ticket_4217.html new file mode 100644 index 000000000..18fd8eb64 --- /dev/null +++ b/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> |