mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Test jQuery.type also with document.
This commit is contained in:
parent
484cc6e220
commit
894bd02a06
@ -219,7 +219,7 @@ test("trim", function() {
|
||||
});
|
||||
|
||||
test("type", function() {
|
||||
expect(22);
|
||||
expect(23);
|
||||
|
||||
equals( jQuery.type(null), "null", "null" );
|
||||
equals( jQuery.type(undefined), "undefined", "undefined" );
|
||||
@ -240,6 +240,7 @@ test("type", function() {
|
||||
equals( jQuery.type(new Function("return;")), "function", "Function" );
|
||||
equals( jQuery.type(function(){}), "function", "Function" );
|
||||
equals( jQuery.type(window), "object", "Window" );
|
||||
equals( jQuery.type(document), "object", "Document" );
|
||||
equals( jQuery.type(document.body), "object", "Element" );
|
||||
equals( jQuery.type(document.createTextNode("foo")), "object", "TextNode" );
|
||||
equals( jQuery.type(document.getElementsByTagName("*")), "object", "NodeList" );
|
||||
|
Loading…
Reference in New Issue
Block a user