aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2014-08-13 23:06:21 -0400
committerMike Sherov <mike.sherov@gmail.com>2014-08-13 23:06:21 -0400
commitba5a60efa17671760ebb8d53f4f21e78b2d59082 (patch)
treed8ccec0701df51cef26b4cb103bd029cb3cf1826
parent9acb4797facf55fe2a268b1a87890decb284da50 (diff)
downloadjquery-ui-ba5a60efa17671760ebb8d53f4f21e78b2d59082.tar.gz
jquery-ui-ba5a60efa17671760ebb8d53f4f21e78b2d59082.zip
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.
-rw-r--r--tests/unit/resizable/resizable_options.js2
1 files changed, 1 insertions, 1 deletions
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({