aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2013-04-07 14:42:42 +0200
committerDave Methvin <dave.methvin@gmail.com>2013-04-17 23:21:39 -0400
commit35784a824456bf87bbe2fadad2717ad4f4000d14 (patch)
treea260ceaf7a84601c5a70e4cc32800ffccfa4e620 /test
parent0db70aa1fa084ccf1ef90d9b78382df95bdf9c85 (diff)
downloadjquery-35784a824456bf87bbe2fadad2717ad4f4000d14.tar.gz
jquery-35784a824456bf87bbe2fadad2717ad4f4000d14.zip
Fix #13743. Remove deprecated support.boxModel. Close gh-1231.
add myself to AUTHORS.txt
Diffstat (limited to 'test')
-rw-r--r--test/unit/support.js17
1 files changed, 1 insertions, 16 deletions
diff --git a/test/unit/support.js b/test/unit/support.js
index 343f52df3..6e7923812 100644
--- a/test/unit/support.js
+++ b/test/unit/support.js
@@ -1,11 +1,5 @@
module("support", { teardown: moduleTeardown });
-test("boxModel", function() {
- expect( 1 );
-
- equal( jQuery.support.boxModel, document.compatMode === "CSS1Compat" , "jQuery.support.boxModel is sort of tied to quirks mode but unstable since 1.8" );
-});
-
test( "zoom of doom (#13089)", function() {
expect( 1 );
@@ -76,7 +70,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
"radioValue":true,
"checkClone":true,
"appendChecked":true,
- "boxModel":true,
"reliableHiddenOffsets":true,
"ajax":true,
"cors":true,
@@ -110,7 +103,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
"radioValue":false,
"checkClone":true,
"appendChecked":true,
- "boxModel":true,
"reliableHiddenOffsets":true,
"ajax":true,
"cors":true,
@@ -144,7 +136,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
"radioValue":false,
"checkClone":true,
"appendChecked":true,
- "boxModel":true,
"reliableHiddenOffsets":true,
"ajax":true,
"cors":true,
@@ -178,7 +169,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
"radioValue":false,
"checkClone":true,
"appendChecked":true,
- "boxModel":true,
"reliableHiddenOffsets":true,
"ajax":true,
"cors":false,
@@ -212,7 +202,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
"radioValue":false,
"checkClone":true,
"appendChecked":true,
- "boxModel":true,
"reliableHiddenOffsets":false,
"ajax":true,
"cors":false,
@@ -223,7 +212,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
expected = {
"ajax": true,
"appendChecked": false,
- "boxModel": true,
"changeBubbles": false,
"checkClone": false,
"checkOn": true,
@@ -280,7 +268,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
"radioValue":false,
"checkClone":false,
"appendChecked":false,
- "boxModel":true,
"reliableHiddenOffsets":false,
"ajax":true,
"cors":false,
@@ -314,7 +301,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
"radioValue":true,
"checkClone":false,
"appendChecked":false,
- "boxModel":true,
"reliableHiddenOffsets":true,
"ajax":true,
"cors":true,
@@ -348,7 +334,6 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
"radioValue":true,
"checkClone":true,
"appendChecked":true,
- "boxModel":true,
"reliableHiddenOffsets":true,
"ajax":true,
"cors":true,
@@ -359,7 +344,7 @@ testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlo
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" ) {