diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2014-08-13 23:06:21 -0400 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2014-08-13 23:06:21 -0400 |
commit | ba5a60efa17671760ebb8d53f4f21e78b2d59082 (patch) | |
tree | d8ccec0701df51cef26b4cb103bd029cb3cf1826 | |
parent | 9acb4797facf55fe2a268b1a87890decb284da50 (diff) | |
download | jquery-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.js | 2 |
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({ |