mirror of
https://github.com/jquery/jquery.git
synced 2026-02-06 01:45:08 -05:00
Fix #11721. Remove jQuery.boxModel, deprecate jQuery.support.boxModel.
This removes all internal uses of `jQuery.support.boxModel`. jQuery has never run unit tests with Quirks Mode and has not even feigned support for several years, so these remnants weren't doing much except giving false hope. For now, `jQuery.support.boxModel` continues to have a value indicating whether the W3C box model is *generally* in use, but be aware that this is easily overridden on an element-by-element basis by the `box-model` CSS property. So don't trust this value.
This commit is contained in:
committed by
Dave Methvin
parent
f76518e393
commit
c4e22ad8b5
2
src/effects.js
vendored
2
src/effects.js
vendored
@@ -681,7 +681,7 @@ function defaultDisplay( nodeName ) {
|
||||
// document to it; WebKit & Firefox won't allow reusing the iframe document.
|
||||
if ( !iframeDoc || !iframe.createElement ) {
|
||||
iframeDoc = ( iframe.contentWindow || iframe.contentDocument ).document;
|
||||
iframeDoc.write( ( jQuery.support.boxModel ? "<!doctype html>" : "" ) + "<html><body>" );
|
||||
iframeDoc.write("<!doctype html><html><body>");
|
||||
iframeDoc.close();
|
||||
}
|
||||
|
||||
|
||||
@@ -20,8 +20,8 @@ if ( "getBoundingClientRect" in document.documentElement ) {
|
||||
win = getWindow( doc ),
|
||||
clientTop = docElem.clientTop || body.clientTop || 0,
|
||||
clientLeft = docElem.clientLeft || body.clientLeft || 0,
|
||||
scrollTop = win.pageYOffset || jQuery.support.boxModel && docElem.scrollTop || body.scrollTop,
|
||||
scrollLeft = win.pageXOffset || jQuery.support.boxModel && docElem.scrollLeft || body.scrollLeft,
|
||||
scrollTop = win.pageYOffset || docElem.scrollTop,
|
||||
scrollLeft = win.pageXOffset || docElem.scrollLeft,
|
||||
top = box.top + scrollTop - clientTop,
|
||||
left = box.left + scrollLeft - clientLeft;
|
||||
|
||||
@@ -176,8 +176,7 @@ jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( me
|
||||
|
||||
if ( val === undefined ) {
|
||||
return win ? (prop in win) ? win[ prop ] :
|
||||
jQuery.support.boxModel && win.document.documentElement[ method ] ||
|
||||
win.document.body[ method ] :
|
||||
win.document.documentElement[ method ] :
|
||||
elem[ method ];
|
||||
}
|
||||
|
||||
|
||||
@@ -95,8 +95,8 @@ jQuery.support = (function() {
|
||||
boxSizingReliable: true
|
||||
};
|
||||
|
||||
// jQuery.boxModel DEPRECATED in 1.3, use jQuery.support.boxModel instead
|
||||
jQuery.boxModel = support.boxModel = (document.compatMode === "CSS1Compat");
|
||||
// jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode
|
||||
support.boxModel = (document.compatMode === "CSS1Compat");
|
||||
|
||||
// Make sure checked status is properly cloned
|
||||
input.checked = true;
|
||||
|
||||
Reference in New Issue
Block a user