mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Assert that .contents().hasClass() works as expected. Fixes #9630
This commit is contained in:
parent
96501d38a9
commit
27e5052a7b
@ -1055,3 +1055,13 @@ test("addClass, removeClass, hasClass", function() {
|
||||
jq.removeClass("class4");
|
||||
ok( jq.hasClass("class4")==false, "Check the class has been properly removed" );
|
||||
});
|
||||
|
||||
test("contents().hasClass() returns correct values", function() {
|
||||
expect(2);
|
||||
|
||||
var $div = jQuery("<div><span class='foo'></span><!-- comment -->text</div>"),
|
||||
$contents = $div.contents();
|
||||
|
||||
ok( $contents.hasClass("foo"), "Found 'foo' in $contents" );
|
||||
ok( $contents.hasClass("undefined"), "Did not find 'undefined' in $contents (correctly)" );
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user