aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBen Mosher <me@benmosher.com>2014-08-25 14:07:25 -0400
committerScott González <scott.gonzalez@gmail.com>2015-03-04 08:51:06 -0500
commit19783fd3e6a6e6e02a2030028e8820076c3b1295 (patch)
tree5f9e4fb9ad6d3cf46c52b624a47f844bff64f69c /tests
parent18e301f4e29c2080e9aa9dac87c00dee137cb6c9 (diff)
downloadjquery-ui-19783fd3e6a6e6e02a2030028e8820076c3b1295.tar.gz
jquery-ui-19783fd3e6a6e6e02a2030028e8820076c3b1295.zip
Resizable: alsoResize more than one element of a jQuery selection
Fixes #4666 Closes gh-1324 Closes gh-1461
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/resizable/resizable_options.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/unit/resizable/resizable_options.js b/tests/unit/resizable/resizable_options.js
index a2c95790b..6e3a93a2f 100644
--- a/tests/unit/resizable/resizable_options.js
+++ b/tests/unit/resizable/resizable_options.js
@@ -432,4 +432,34 @@ test( "alsoResize + containment", function() {
equal( other.height(), 150, "alsoResize constrained height at containment edge" );
});
+test( "alsoResize + multiple selection", function() {
+ expect( 6 );
+ var other1 = $( "<div>" )
+ .addClass( "other" )
+ .css({
+ width: 50,
+ height: 50
+ })
+ .appendTo( "body" ),
+ other2 = $( "<div>" )
+ .addClass( "other" )
+ .css({
+ width: 50,
+ height: 50
+ })
+ .appendTo( "body"),
+ element = $( "#resizable1" ).resizable({
+ alsoResize: other1.add( other2 ),
+ containment: "#container"
+ });
+
+ TestHelpers.resizable.drag( ".ui-resizable-se", 400, 400 );
+ equal( element.width(), 300, "resizable constrained width at containment edge" );
+ equal( element.height(), 200, "resizable constrained height at containment edge" );
+ equal( other1.width(), 250, "alsoResize o1 constrained width at containment edge" );
+ equal( other1.height(), 150, "alsoResize o1 constrained height at containment edge" );
+ equal( other2.width(), 250, "alsoResize o2 constrained width at containment edge" );
+ equal( other2.height(), 150, "alsoResize o2 constrained height at containment edge" );
+});
+
})(jQuery);