diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2015-06-15 10:56:29 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2015-06-16 10:55:48 -0400 |
commit | ee69e9c8b8a5b832f2feaf1751ecd804df2d240a (patch) | |
tree | 863911b7fcca017cd69ef5773a76e6f019ca9dbc /test/unit | |
parent | d8037c6d5267569b56221148164b4df71f6ae612 (diff) | |
download | jquery-ee69e9c8b8a5b832f2feaf1751ecd804df2d240a.tar.gz jquery-ee69e9c8b8a5b832f2feaf1751ecd804df2d240a.zip |
Revert "Offset: allow offset setter to throw for disconnected elements"
This reverts commit 0d11c1182f2012cd6eb06ce1e3fa5a495af9bee3.
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/core.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/unit/core.js b/test/unit/core.js index 07019e86b..848ca2a5f 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -36,6 +36,10 @@ test("jQuery()", function() { 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 @@ test("jQuery()", function() { elem = jQuery("\n\n<em>world</em>")[0]; equal( elem.nodeName.toLowerCase(), "em", "leading newlines" ); - elem = jQuery( "<div/>", attrObj ); + elem = jQuery("<div/>", attrObj ); if ( jQuery.fn.width ) { 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 ) { equal( elem[0].style.paddingLeft, "1px", "jQuery quick setter css"); equal( elem[0].style.paddingRight, "1px", "jQuery quick setter css"); |