diff options
author | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-06-06 20:37:32 +0000 |
---|---|---|
committer | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-06-06 20:37:32 +0000 |
commit | 0a279c243d9c38c14328a6eda44b2de9307712d9 (patch) | |
tree | 03b05ca625314d6e26e0657b0a1f3db5a6c9125f /ui/tests/resizable.js | |
parent | 5e6ef44bb4962a8899ae2c9529ba753f91e3488c (diff) | |
download | jquery-ui-0a279c243d9c38c14328a6eda44b2de9307712d9.tar.gz jquery-ui-0a279c243d9c38c14328a6eda44b2de9307712d9.zip |
Added resizable test for wrapped elements
Diffstat (limited to 'ui/tests/resizable.js')
-rw-r--r-- | ui/tests/resizable.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ui/tests/resizable.js b/ui/tests/resizable.js index e8b1db0e2..48582e016 100644 --- a/ui/tests/resizable.js +++ b/ui/tests/resizable.js @@ -379,5 +379,22 @@ test("ui-resizable-se { handles: 'all', grid: [0, 20] }", function() { equals( target.width(), 118, "compare width"); equals( target.height(), 120, "compare height"); +}); + +test("ui-resizable-se { handles: 'all', grid: [0, 20] } wrapped", function() { + + var handle = '.ui-resizable-se', target = $('#resizable2').resizable({ handles: 'all', grid: [0, 20] }); + + expect(4); + + drag(handle, 3, 9); + + equals( target.width(), 103, "compare width"); + equals( target.height(), 100, "compare height"); + + drag(handle, 15, 11); + + equals( target.width(), 118, "compare width"); + equals( target.height(), 120, "compare height"); }); |