Added a test for bug #997.
This commit is contained in:
parent
7d0a84193f
commit
8613d9a93a
11
src/jquery/coreTest.js
vendored
11
src/jquery/coreTest.js
vendored
|
@ -20,7 +20,7 @@ test("$()", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("isFunction", function() {
|
test("isFunction", function() {
|
||||||
expect(20);
|
expect(21);
|
||||||
|
|
||||||
// Make sure that false values return false
|
// Make sure that false values return false
|
||||||
ok( !jQuery.isFunction(), "No Value" );
|
ok( !jQuery.isFunction(), "No Value" );
|
||||||
|
@ -79,6 +79,15 @@ test("isFunction", function() {
|
||||||
|
|
||||||
document.body.removeChild( input );
|
document.body.removeChild( input );
|
||||||
|
|
||||||
|
var a = document.createElement("a");
|
||||||
|
a.href = "some-function";
|
||||||
|
document.body.appendChild( a );
|
||||||
|
|
||||||
|
// This serializes with the word 'function' in it
|
||||||
|
ok( !jQuery.isFunction(a), "Anchor Element" );
|
||||||
|
|
||||||
|
document.body.removeChild( a );
|
||||||
|
|
||||||
// Recursive function calls have lengths and array-like properties
|
// Recursive function calls have lengths and array-like properties
|
||||||
function callme(callback){
|
function callme(callback){
|
||||||
function fn(response){
|
function fn(response){
|
||||||
|
|
Loading…
Reference in a new issue