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.
This commit is contained in:
Mike Sherov 2014-08-13 23:06:21 -04:00
parent 9acb4797fa
commit ba5a60efa1

View File

@ -306,7 +306,7 @@ test( "grid - maintains grid with padding and border when approaching no dimensi
var handle = ".ui-resizable-nw", var handle = ".ui-resizable-nw",
target = $( "#resizable1" ).css({ target = $( "#resizable1" ).css({
padding: 5, padding: 5,
borderWidth: 5, border: "5px solid black",
width: 80, width: 80,
height: 80 height: 80
}).resizable({ }).resizable({