From 935df49d77c9719b12e28b07e1c26bcf8a5ab6a7 Mon Sep 17 00:00:00 2001 From: Mike Sherov Date: Fri, 2 Mar 2012 19:21:24 -0500 Subject: [PATCH] Followup for #7986 to fix a botched merge. Okay, Jenkins, you were right this time. --- src/support.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/support.js b/src/support.js index 3b64a49be..baebaa2a0 100644 --- a/src/support.js +++ b/src/support.js @@ -94,8 +94,8 @@ jQuery.support = (function() { pixelMargin: true }; - //jQuery.boxModel DEPRECATED in 1.3, use jQuery.support.boxModel instead - jQuery.boxModel = support.boxModel = document.compatMode === "CSS1Compat"; + // jQuery.boxModel DEPRECATED in 1.3, use jQuery.support.boxModel instead + jQuery.boxModel = support.boxModel = (document.compatMode === "CSS1Compat"); // Make sure checked status is properly cloned input.checked = true; @@ -239,11 +239,6 @@ jQuery.support = (function() { ( parseInt( ( window.getComputedStyle( marginDiv, null ) || { marginRight: 0 } ).marginRight, 10 ) || 0 ) === 0; } - // Figure out if the W3C box model works as expected - div.innerHTML = ""; - div.style.width = div.style.paddingLeft = "1px"; - jQuery.boxModel = support.boxModel = div.offsetWidth === 2; - if ( typeof div.style.zoom !== "undefined" ) { // Check if natively block-level elements act like inline-block // elements when setting their display to 'inline' and giving -- 2.39.5