diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2013-04-03 21:44:40 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-04-03 21:44:40 -0400 |
commit | 01fcdba20836e69977cfc47d7cfd4d23851e8ad0 (patch) | |
tree | cdd31c50c09e337f8d731c43a05115cfcacbbf5c /test | |
parent | 674d34f021266a9b2dd10bfca5d7223dbce250c2 (diff) | |
download | jquery-01fcdba20836e69977cfc47d7cfd4d23851e8ad0.tar.gz jquery-01fcdba20836e69977cfc47d7cfd4d23851e8ad0.zip |
Remove doesNotIncludeMarginInBodyOffset from support checks.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/support.js | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 4c6a49d55..18a1f9a0f 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -75,7 +75,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo "reliableHiddenOffsets":true, "ajax":true, "cors":true, - "doesNotIncludeMarginInBodyOffset":true, "clearCloneStyle": true }; } else if ( /opera.*version\/12\.1/i.test( userAgent ) ) { @@ -109,7 +108,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo "reliableHiddenOffsets":true, "ajax":true, "cors":true, - "doesNotIncludeMarginInBodyOffset":true, "clearCloneStyle": true }; } else if ( /msie 10\.0/i.test( userAgent ) ) { @@ -143,7 +141,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo "reliableHiddenOffsets":true, "ajax":true, "cors":true, - "doesNotIncludeMarginInBodyOffset":true, "clearCloneStyle": false }; } else if ( /msie 9\.0/i.test( userAgent ) ) { @@ -177,7 +174,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo "reliableHiddenOffsets":true, "ajax":true, "cors":false, - "doesNotIncludeMarginInBodyOffset":true, "clearCloneStyle": false }; } else if ( /msie 8\.0/i.test( userAgent ) ) { @@ -211,7 +207,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo "reliableHiddenOffsets":false, "ajax":true, "cors":false, - "doesNotIncludeMarginInBodyOffset":true, "clearCloneStyle": true }; } else if ( /msie 7\.0/i.test( userAgent ) ) { @@ -225,7 +220,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo "cors": false, "cssFloat": false, "deleteExpando": false, - "doesNotIncludeMarginInBodyOffset": true, "enctype": true, "focusinBubbles": true, "getSetAttribute": false, @@ -279,7 +273,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo "reliableHiddenOffsets":false, "ajax":true, "cors":false, - "doesNotIncludeMarginInBodyOffset":true, "clearCloneStyle": true }; } else if ( /5\.1\.1 safari/i.test( userAgent ) ) { @@ -313,7 +306,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo "reliableHiddenOffsets":true, "ajax":true, "cors":true, - "doesNotIncludeMarginInBodyOffset":true, "clearCloneStyle": true }; } else if ( /firefox/i.test( userAgent ) ) { @@ -347,14 +339,13 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo "reliableHiddenOffsets":true, "ajax":true, "cors":true, - "doesNotIncludeMarginInBodyOffset":true, "clearCloneStyle": true }; } if ( expected ) { test("Verify that the support tests resolve as expected per browser", function() { - expect( 31 ); + expect( 30 ); for ( var i in expected ) { if ( jQuery.ajax || i !== "ajax" && i !== "cors" ) { |