diff options
author | Richard Worth <rdworth@gmail.com> | 2009-03-02 10:37:33 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-03-02 10:37:33 +0000 |
commit | f277564bdc82263a1b35559769abacd79a8f0e9c (patch) | |
tree | 25285b2b0c25311681c1adabfacf5466fc115bfc /tests/visual/resizable/resizable_ticket_3053.html | |
parent | b38b6a75460fcdcc4d95a6096af1bb13d3dce3e9 (diff) | |
download | jquery-ui-f277564bdc82263a1b35559769abacd79a8f0e9c.tar.gz jquery-ui-f277564bdc82263a1b35559769abacd79a8f0e9c.zip |
tests: resizable - Added visual test for ticket #3053
Diffstat (limited to 'tests/visual/resizable/resizable_ticket_3053.html')
-rw-r--r-- | tests/visual/resizable/resizable_ticket_3053.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/visual/resizable/resizable_ticket_3053.html b/tests/visual/resizable/resizable_ticket_3053.html new file mode 100644 index 000000000..9ceb21f21 --- /dev/null +++ b/tests/visual/resizable/resizable_ticket_3053.html @@ -0,0 +1,34 @@ +<!doctype html> +<html lang="en"> +<head> + <title>Resizable Visual Test : Resizable ticket #3053</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', + aspectRatio: true, + transparent: true, + ghost: true + }); + }); + </script> + <style type="text/css"> + .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/3053">#3053 - when resizing a image a row of pixels can disappear</a></h1> + +<img id="resizable" src="images/test.png"> + +</body> +</html> |