aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/sortable/options.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/sortable/options.js')
-rw-r--r--tests/unit/sortable/options.js13
1 files changed, 2 insertions, 11 deletions
diff --git a/tests/unit/sortable/options.js b/tests/unit/sortable/options.js
index 0905de73c..3792d433f 100644
--- a/tests/unit/sortable/options.js
+++ b/tests/unit/sortable/options.js
@@ -294,17 +294,8 @@ QUnit.test( "{ forcePlaceholderSize: true } table rows", function( assert ) {
placeholder: "test",
forcePlaceholderSize: true,
start: function( event, ui ) {
-
- // Support: IE 11+, Edge <79 only
- // In IE & Edge Legacy these values may differ a little
- // when jQuery >=3.0 <3.2 is used.
- if ( jqMinor === "3.0." || jqMinor === "3.1." ) {
- assert.ok( Math.abs( ui.placeholder.height() - ui.item.height() ) < 0.25,
- "placeholder height is within 0.25 px of item's" );
- } else {
- assert.equal( ui.placeholder.height(), ui.item.height(),
- "placeholder is same height as item" );
- }
+ assert.equal( ui.placeholder.height(), ui.item.height(),
+ "placeholder is same height as item" );
}
} );