diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2016-01-05 21:29:04 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2016-01-06 14:05:18 -0500 |
commit | 77f9b1e8037b1e4dc12e64cf10240f4b97383c30 (patch) | |
tree | 752f539d81888992ce4fcd50db302f13a44dbb34 /test | |
parent | ce4d7caa1703ab45c51c0e00efd3e298833744b9 (diff) | |
download | jquery-77f9b1e8037b1e4dc12e64cf10240f4b97383c30.tar.gz jquery-77f9b1e8037b1e4dc12e64cf10240f4b97383c30.zip |
CSS: fix reliableHiddenOffsets support test for IE6-7
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/support.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 41e45c59c..b75074e28 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -283,12 +283,12 @@ testIframeWithCallback( } else if ( /msie 7\.0/i.test( userAgent ) ) { expected = { "ajax": true, - "appendChecked": true, + "appendChecked": false, "attributes": false, - "boxSizing": true, + "boxSizing": false, "boxSizingReliable": false, "change": false, - "checkClone": true, + "checkClone": false, "checkOn": true, "clearCloneStyle": true, "cors": false, @@ -297,12 +297,12 @@ testIframeWithCallback( "deleteExpando": false, "enctype": true, "focusin": true, - "getSetAttribute": true, - "hrefNormalized": true, + "getSetAttribute": false, + "hrefNormalized": false, "html5Clone": false, "htmlSerialize": false, - "inlineBlockNeedsLayout": false, - "input": false, + "inlineBlockNeedsLayout": true, + "input": true, "leadingWhitespace": false, "noCloneChecked": false, "noCloneEvent": false, @@ -318,7 +318,7 @@ testIframeWithCallback( "reliableMarginLeft": false, "style": false, "submit": false, - "tbody": true + "tbody": false }; } else if ( /msie 6\.0/i.test( userAgent ) ) { expected = { |