mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Revert "Offset: allow offset setter to throw for disconnected elements"
This reverts commit 0d11c1182f
.
This commit is contained in:
parent
e4218ca10b
commit
aaff6a87a1
@ -32,7 +32,7 @@ jQuery.offset = {
|
||||
elem.style.position = "relative";
|
||||
}
|
||||
|
||||
curOffset = curElem.offset();
|
||||
curOffset = curElem.offset() || { top: 0, left: 0 };
|
||||
curCSSTop = jQuery.css( elem, "top" );
|
||||
curCSSLeft = jQuery.css( elem, "left" );
|
||||
calculatePosition = ( position === "absolute" || position === "fixed" ) &&
|
||||
|
@ -36,6 +36,10 @@ QUnit.test( "jQuery()", function( assert ) {
|
||||
expected++;
|
||||
attrObj[ "width" ] = 10;
|
||||
}
|
||||
if ( jQuery.fn.offset ) {
|
||||
expected++;
|
||||
attrObj["offset"] = { "top": 1, "left": 1 };
|
||||
}
|
||||
if ( jQuery.fn.css ) {
|
||||
expected += 2;
|
||||
attrObj[ "css" ] = { "paddingLeft": 1, "paddingRight": 1 };
|
||||
@ -101,12 +105,16 @@ QUnit.test( "jQuery()", function( assert ) {
|
||||
elem = jQuery( "\n\n<em>world</em>" )[ 0 ];
|
||||
assert.equal( elem.nodeName.toLowerCase(), "em", "leading newlines" );
|
||||
|
||||
elem = jQuery( "<div/>", attrObj );
|
||||
elem = jQuery("<div/>", attrObj );
|
||||
|
||||
if ( jQuery.fn.width ) {
|
||||
assert.equal( elem[ 0 ].style.width, "10px", "jQuery() quick setter width" );
|
||||
}
|
||||
|
||||
if ( jQuery.fn.offset ) {
|
||||
equal( elem[0].style.top, "1px", "jQuery() quick setter offset");
|
||||
}
|
||||
|
||||
if ( jQuery.fn.css ) {
|
||||
assert.equal( elem[ 0 ].style.paddingLeft, "1px", "jQuery quick setter css" );
|
||||
assert.equal( elem[ 0 ].style.paddingRight, "1px", "jQuery quick setter css" );
|
||||
|
Loading…
Reference in New Issue
Block a user