From ba5a60efa17671760ebb8d53f4f21e78b2d59082 Mon Sep 17 00:00:00 2001 From: Mike Sherov Date: Wed, 13 Aug 2014 23:06:21 -0400 Subject: [PATCH] Resizable Tests: fix IE8 test fail due to unspecified border style IE <9 does not correctly set the height of an element if the borderWidth is non-zero but no borderStyle is specified. --- tests/unit/resizable/resizable_options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/resizable/resizable_options.js b/tests/unit/resizable/resizable_options.js index 36d600061..c46801bc5 100644 --- a/tests/unit/resizable/resizable_options.js +++ b/tests/unit/resizable/resizable_options.js @@ -306,7 +306,7 @@ test( "grid - maintains grid with padding and border when approaching no dimensi var handle = ".ui-resizable-nw", target = $( "#resizable1" ).css({ padding: 5, - borderWidth: 5, + border: "5px solid black", width: 80, height: 80 }).resizable({ -- 2.39.5