From 20ddbe4f594f78f7f1095050aabd91882dde0670 Mon Sep 17 00:00:00 2001 From: Oleg Gaidarenko Date: Thu, 3 Sep 2015 02:52:01 +0300 Subject: Build: Update jscs and lint files Ref 10fdad742a2a6aa9f0e00b3e04fc5264797c53c7 Fixes gh-2056 --- test/unit/core.js | 994 +++++++++++++++++++++++++++--------------------------- 1 file changed, 499 insertions(+), 495 deletions(-) (limited to 'test/unit/core.js') diff --git a/test/unit/core.js b/test/unit/core.js index 688fe97a6..bf95ff04b 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -1,7 +1,7 @@ -module("core", { teardown: moduleTeardown }); +module( "core", { teardown: moduleTeardown } ); -test("Basic requirements", function() { - expect(7); +test( "Basic requirements", function() { + expect( 7 ); ok( Array.prototype.push, "Array.push()" ); ok( Function.prototype.apply, "Function.apply()" ); ok( document.getElementById, "getElementById" ); @@ -9,15 +9,15 @@ test("Basic requirements", function() { ok( RegExp, "RegExp" ); ok( jQuery, "jQuery" ); ok( $, "$" ); -}); +} ); -test("jQuery()", function() { +test( "jQuery()", function() { var elem, i, - obj = jQuery("div"), - code = jQuery(""), - img = jQuery(""), - div = jQuery("

"), + obj = jQuery( "div" ), + code = jQuery( "" ), + img = jQuery( "" ), + div = jQuery( "

" ), exec = false, expected = 23, attrObj = { @@ -30,19 +30,19 @@ test("jQuery()", function() { // few here but beware of modular builds where these methods may be excluded. if ( jQuery.fn.click ) { expected++; - attrObj["click"] = function() { ok( exec, "Click executed." ); }; + attrObj[ "click" ] = function() { ok( exec, "Click executed." ); }; } if ( jQuery.fn.width ) { expected++; - attrObj["width"] = 10; + attrObj[ "width" ] = 10; } if ( jQuery.fn.offset ) { expected++; - attrObj["offset"] = { "top": 1, "left": 1 }; + attrObj[ "offset" ] = { "top": 1, "left": 1 }; } if ( jQuery.fn.css ) { expected += 2; - attrObj["css"] = { "paddingLeft": 1, "paddingRight": 1 }; + attrObj[ "css" ] = { "paddingLeft": 1, "paddingRight": 1 }; } if ( jQuery.fn.attr ) { expected++; @@ -53,10 +53,10 @@ test("jQuery()", function() { // Basic constructor's behavior equal( jQuery().length, 0, "jQuery() === jQuery([])" ); - equal( jQuery(undefined).length, 0, "jQuery(undefined) === jQuery([])" ); - equal( jQuery(null).length, 0, "jQuery(null) === jQuery([])" ); - equal( jQuery("").length, 0, "jQuery('') === jQuery([])" ); - deepEqual( jQuery(obj).get(), obj.get(), "jQuery(jQueryObj) == jQueryObj" ); + equal( jQuery( undefined ).length, 0, "jQuery(undefined) === jQuery([])" ); + equal( jQuery( null ).length, 0, "jQuery(null) === jQuery([])" ); + equal( jQuery( "" ).length, 0, "jQuery('') === jQuery([])" ); + deepEqual( jQuery( obj ).get(), obj.get(), "jQuery(jQueryObj) == jQueryObj" ); // Invalid #id goes to Sizzle which will throw an error (gh-1682) try { @@ -66,7 +66,7 @@ test("jQuery()", function() { } // can actually yield more than one, when iframes are included, the window is an array as well - equal( jQuery(window).length, 1, "Correct number of elements generated for jQuery(window)" ); + equal( jQuery( window ).length, 1, "Correct number of elements generated for jQuery(window)" ); /* // disabled since this test was doing nothing. i tried to fix it but i'm not sure @@ -95,76 +95,76 @@ test("jQuery()", function() { equal( div.length, 4, "Correct number of elements generated for div hr code b" ); equal( div.parent().length, 0, "Make sure that the generated HTML has no parent." ); - equal( jQuery([1,2,3]).get(1), 2, "Test passing an array to the factory" ); + equal( jQuery( [ 1,2,3 ] ).get( 1 ), 2, "Test passing an array to the factory" ); - equal( jQuery(document.body).get(0), jQuery("body").get(0), "Test passing an html node to the factory" ); + equal( jQuery( document.body ).get( 0 ), jQuery( "body" ).get( 0 ), "Test passing an html node to the factory" ); - elem = jQuery(" hello")[0]; + elem = jQuery( " hello" )[ 0 ]; equal( elem.nodeName.toLowerCase(), "em", "leading space" ); - elem = jQuery("\n\nworld")[0]; + elem = jQuery( "\n\nworld" )[ 0 ]; equal( elem.nodeName.toLowerCase(), "em", "leading newlines" ); - elem = jQuery("
", attrObj ); + elem = jQuery( "
", attrObj ); if ( jQuery.fn.width ) { - equal( elem[0].style.width, "10px", "jQuery() quick setter 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"); + 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"); + equal( elem[ 0 ].style.paddingLeft, "1px", "jQuery quick setter css" ); + equal( elem[ 0 ].style.paddingRight, "1px", "jQuery quick setter css" ); } if ( jQuery.fn.attr ) { - equal( elem[0].getAttribute("desired"), "very", "jQuery quick setter attr"); + equal( elem[ 0 ].getAttribute( "desired" ), "very", "jQuery quick setter attr" ); } - equal( elem[0].childNodes.length, 1, "jQuery quick setter text"); - equal( elem[0].firstChild.nodeValue, "test", "jQuery quick setter text"); - equal( elem[0].className, "test2", "jQuery() quick setter class"); - equal( elem[0].id, "test3", "jQuery() quick setter id"); + equal( elem[ 0 ].childNodes.length, 1, "jQuery quick setter text" ); + equal( elem[ 0 ].firstChild.nodeValue, "test", "jQuery quick setter text" ); + equal( elem[ 0 ].className, "test2", "jQuery() quick setter class" ); + equal( elem[ 0 ].id, "test3", "jQuery() quick setter id" ); exec = true; - elem.trigger("click"); + elem.trigger( "click" ); // manually clean up detached elements elem.remove(); for ( i = 0; i < 3; ++i ) { - elem = jQuery(""); + elem = jQuery( "" ); } - equal( elem[0].defaultValue, "TEST", "Ensure cached nodes are cloned properly (Bug #6655)" ); + equal( elem[ 0 ].defaultValue, "TEST", "Ensure cached nodes are cloned properly (Bug #6655)" ); elem = jQuery( "", {} ); strictEqual( elem[ 0 ].ownerDocument, document, "Empty attributes object is not interpreted as a document (trac-8950)" ); -}); +} ); -test("jQuery(selector, context)", function() { - expect(3); - deepEqual( jQuery("div p", "#qunit-fixture").get(), q("sndp", "en", "sap"), "Basic selector with string as context" ); - deepEqual( jQuery("div p", q("qunit-fixture")[0]).get(), q("sndp", "en", "sap"), "Basic selector with element as context" ); - deepEqual( jQuery("div p", jQuery("#qunit-fixture")).get(), q("sndp", "en", "sap"), "Basic selector with jQuery object as context" ); -}); +test( "jQuery(selector, context)", function() { + expect( 3 ); + deepEqual( jQuery( "div p", "#qunit-fixture" ).get(), q( "sndp", "en", "sap" ), "Basic selector with string as context" ); + deepEqual( jQuery( "div p", q( "qunit-fixture" )[ 0 ] ).get(), q( "sndp", "en", "sap" ), "Basic selector with element as context" ); + deepEqual( jQuery( "div p", jQuery( "#qunit-fixture" ) ).get(), q( "sndp", "en", "sap" ), "Basic selector with jQuery object as context" ); +} ); test( "globalEval", function() { expect( 3 ); - Globals.register("globalEvalTest"); + Globals.register( "globalEvalTest" ); - jQuery.globalEval("globalEvalTest = 1;"); + jQuery.globalEval( "globalEvalTest = 1;" ); equal( window.globalEvalTest, 1, "Test variable assignments are global" ); - jQuery.globalEval("var globalEvalTest = 2;"); + jQuery.globalEval( "var globalEvalTest = 2;" ); equal( window.globalEvalTest, 2, "Test variable declarations are global" ); - jQuery.globalEval("this.globalEvalTest = 3;"); + jQuery.globalEval( "this.globalEvalTest = 3;" ); equal( window.globalEvalTest, 3, "Test context (this) is the window object" ); -}); +} ); test( "globalEval execution after script injection (#7862)", function() { expect( 1 ); @@ -177,41 +177,41 @@ test( "globalEval execution after script injection (#7862)", function() { now = jQuery.now(); document.body.appendChild( script ); - jQuery.globalEval( "var strictEvalTest = " + jQuery.now() + ";"); + jQuery.globalEval( "var strictEvalTest = " + jQuery.now() + ";" ); ok( window.strictEvalTest - now < 500, "Code executed synchronously" ); -}); +} ); // This is not run in AMD mode if ( jQuery.noConflict ) { - test("noConflict", function() { - expect(7); + test( "noConflict", function() { + expect( 7 ); var $$ = jQuery; strictEqual( jQuery, jQuery.noConflict(), "noConflict returned the jQuery object" ); - strictEqual( window["jQuery"], $$, "Make sure jQuery wasn't touched." ); - strictEqual( window["$"], original$, "Make sure $ was reverted." ); + strictEqual( window[ "jQuery" ], $$, "Make sure jQuery wasn't touched." ); + strictEqual( window[ "$" ], original$, "Make sure $ was reverted." ); jQuery = $ = $$; - strictEqual( jQuery.noConflict(true), $$, "noConflict returned the jQuery object" ); - strictEqual( window["jQuery"], originaljQuery, "Make sure jQuery was reverted." ); - strictEqual( window["$"], original$, "Make sure $ was reverted." ); - ok( $$().pushStack([]), "Make sure that jQuery still works." ); + strictEqual( jQuery.noConflict( true ), $$, "noConflict returned the jQuery object" ); + strictEqual( window[ "jQuery" ], originaljQuery, "Make sure jQuery was reverted." ); + strictEqual( window[ "$" ], original$, "Make sure $ was reverted." ); + ok( $$().pushStack( [] ), "Make sure that jQuery still works." ); - window["jQuery"] = jQuery = $$; - }); + window[ "jQuery" ] = jQuery = $$; + } ); } -test("trim", function() { - expect(13); +test( "trim", function() { + expect( 13 ); - var nbsp = String.fromCharCode(160); + var nbsp = String.fromCharCode( 160 ); - equal( jQuery.trim("hello "), "hello", "trailing space" ); - equal( jQuery.trim(" hello"), "hello", "leading space" ); - equal( jQuery.trim(" hello "), "hello", "space on both sides" ); - equal( jQuery.trim(" " + nbsp + "hello " + nbsp + " "), "hello", " " ); + equal( jQuery.trim( "hello " ), "hello", "trailing space" ); + equal( jQuery.trim( " hello" ), "hello", "leading space" ); + equal( jQuery.trim( " hello " ), "hello", "space on both sides" ); + equal( jQuery.trim( " " + nbsp + "hello " + nbsp + " " ), "hello", " " ); equal( jQuery.trim(), "", "Nothing in." ); equal( jQuery.trim( undefined ), "", "Undefined" ); @@ -219,85 +219,85 @@ test("trim", function() { equal( jQuery.trim( 5 ), "5", "Number" ); equal( jQuery.trim( false ), "false", "Boolean" ); - equal( jQuery.trim(" "), "", "space should be trimmed" ); - equal( jQuery.trim("ipad\xA0"), "ipad", "nbsp should be trimmed" ); - equal( jQuery.trim("\uFEFF"), "", "zwsp should be trimmed" ); - equal( jQuery.trim("\uFEFF \xA0! | \uFEFF"), "! |", "leading/trailing should be trimmed" ); -}); + equal( jQuery.trim( " " ), "", "space should be trimmed" ); + equal( jQuery.trim( "ipad\xA0" ), "ipad", "nbsp should be trimmed" ); + equal( jQuery.trim( "\uFEFF" ), "", "zwsp should be trimmed" ); + equal( jQuery.trim( "\uFEFF \xA0! | \uFEFF" ), "! |", "leading/trailing should be trimmed" ); +} ); -test("type", function() { +test( "type", function() { expect( 28 ); - equal( jQuery.type(null), "null", "null" ); - equal( jQuery.type(undefined), "undefined", "undefined" ); - equal( jQuery.type(true), "boolean", "Boolean" ); - equal( jQuery.type(false), "boolean", "Boolean" ); - equal( jQuery.type(Boolean(true)), "boolean", "Boolean" ); - equal( jQuery.type(0), "number", "Number" ); - equal( jQuery.type(1), "number", "Number" ); - equal( jQuery.type(Number(1)), "number", "Number" ); - equal( jQuery.type(""), "string", "String" ); - equal( jQuery.type("a"), "string", "String" ); - equal( jQuery.type(String("a")), "string", "String" ); - equal( jQuery.type({}), "object", "Object" ); - equal( jQuery.type(/foo/), "regexp", "RegExp" ); - equal( jQuery.type(new RegExp("asdf")), "regexp", "RegExp" ); - equal( jQuery.type([1]), "array", "Array" ); - equal( jQuery.type(new Date()), "date", "Date" ); - equal( jQuery.type(new Function("return;")), "function", "Function" ); - equal( jQuery.type(function(){}), "function", "Function" ); - equal( jQuery.type(new Error()), "error", "Error" ); - equal( jQuery.type(window), "object", "Window" ); - equal( jQuery.type(document), "object", "Document" ); - equal( jQuery.type(document.body), "object", "Element" ); - equal( jQuery.type(document.createTextNode("foo")), "object", "TextNode" ); - equal( jQuery.type(document.getElementsByTagName("*")), "object", "NodeList" ); + equal( jQuery.type( null ), "null", "null" ); + equal( jQuery.type( undefined ), "undefined", "undefined" ); + equal( jQuery.type( true ), "boolean", "Boolean" ); + equal( jQuery.type( false ), "boolean", "Boolean" ); + equal( jQuery.type( Boolean( true ) ), "boolean", "Boolean" ); + equal( jQuery.type( 0 ), "number", "Number" ); + equal( jQuery.type( 1 ), "number", "Number" ); + equal( jQuery.type( Number( 1 ) ), "number", "Number" ); + equal( jQuery.type( "" ), "string", "String" ); + equal( jQuery.type( "a" ), "string", "String" ); + equal( jQuery.type( String( "a" ) ), "string", "String" ); + equal( jQuery.type( {} ), "object", "Object" ); + equal( jQuery.type( /foo/ ), "regexp", "RegExp" ); + equal( jQuery.type( new RegExp( "asdf" ) ), "regexp", "RegExp" ); + equal( jQuery.type( [ 1 ] ), "array", "Array" ); + equal( jQuery.type( new Date() ), "date", "Date" ); + equal( jQuery.type( new Function( "return;" ) ), "function", "Function" ); + equal( jQuery.type( function() {} ), "function", "Function" ); + equal( jQuery.type( new Error() ), "error", "Error" ); + equal( jQuery.type( window ), "object", "Window" ); + equal( jQuery.type( document ), "object", "Document" ); + equal( jQuery.type( document.body ), "object", "Element" ); + equal( jQuery.type( document.createTextNode( "foo" ) ), "object", "TextNode" ); + equal( jQuery.type( document.getElementsByTagName( "*" ) ), "object", "NodeList" ); // Avoid Lint complaints var MyString = String, MyNumber = Number, MyBoolean = Boolean, MyObject = Object; - equal( jQuery.type(new MyBoolean(true)), "boolean", "Boolean" ); - equal( jQuery.type(new MyNumber(1)), "number", "Number" ); - equal( jQuery.type(new MyString("a")), "string", "String" ); - equal( jQuery.type(new MyObject()), "object", "Object" ); -}); + equal( jQuery.type( new MyBoolean( true ) ), "boolean", "Boolean" ); + equal( jQuery.type( new MyNumber( 1 ) ), "number", "Number" ); + equal( jQuery.type( new MyString( "a" ) ), "string", "String" ); + equal( jQuery.type( new MyObject() ), "object", "Object" ); +} ); -asyncTest("isPlainObject", function() { - expect(16); +asyncTest( "isPlainObject", function() { + expect( 16 ); var pass, iframe, doc, fn = function() {}; // The use case that we want to match - ok( jQuery.isPlainObject({}), "{}" ); + ok( jQuery.isPlainObject( {} ), "{}" ); // Not objects shouldn't be matched - ok( !jQuery.isPlainObject(""), "string" ); - ok( !jQuery.isPlainObject(0) && !jQuery.isPlainObject(1), "number" ); - ok( !jQuery.isPlainObject(true) && !jQuery.isPlainObject(false), "boolean" ); - ok( !jQuery.isPlainObject(null), "null" ); - ok( !jQuery.isPlainObject(undefined), "undefined" ); + ok( !jQuery.isPlainObject( "" ), "string" ); + ok( !jQuery.isPlainObject( 0 ) && !jQuery.isPlainObject( 1 ), "number" ); + ok( !jQuery.isPlainObject( true ) && !jQuery.isPlainObject( false ), "boolean" ); + ok( !jQuery.isPlainObject( null ), "null" ); + ok( !jQuery.isPlainObject( undefined ), "undefined" ); // Arrays shouldn't be matched - ok( !jQuery.isPlainObject([]), "array" ); + ok( !jQuery.isPlainObject( [] ), "array" ); // Instantiated objects shouldn't be matched - ok( !jQuery.isPlainObject(new Date()), "new Date" ); + ok( !jQuery.isPlainObject( new Date() ), "new Date" ); // Functions shouldn't be matched - ok( !jQuery.isPlainObject(fn), "fn" ); + ok( !jQuery.isPlainObject( fn ), "fn" ); // Again, instantiated objects shouldn't be matched - ok( !jQuery.isPlainObject(new fn()), "new fn (no methods)" ); + ok( !jQuery.isPlainObject( new fn() ), "new fn (no methods)" ); // Makes the function a little more realistic // (and harder to detect, incidentally) - fn.prototype["someMethod"] = function(){}; + fn.prototype[ "someMethod" ] = function() {}; // Again, instantiated objects shouldn't be matched - ok( !jQuery.isPlainObject(new fn()), "new fn" ); + ok( !jQuery.isPlainObject( new fn() ), "new fn" ); // Make it even harder to detect in IE < 9 fn = function() { @@ -307,10 +307,10 @@ asyncTest("isPlainObject", function() { b: "b" }; - ok( !jQuery.isPlainObject(new fn()), "fn (inherited and own properties)"); + ok( !jQuery.isPlainObject( new fn() ), "fn (inherited and own properties)" ); // DOM Element - ok( !jQuery.isPlainObject( document.createElement("div") ), "DOM Element" ); + ok( !jQuery.isPlainObject( document.createElement( "div" ) ), "DOM Element" ); // Window ok( !jQuery.isPlainObject( window ), "window" ); @@ -323,27 +323,27 @@ asyncTest("isPlainObject", function() { ok( pass, "Does not throw exceptions on host objects" ); // Objects from other windows should be matched - Globals.register("iframeDone"); + Globals.register( "iframeDone" ); window.iframeDone = function( otherObject, detail ) { window.iframeDone = undefined; iframe.parentNode.removeChild( iframe ); - ok( jQuery.isPlainObject(new otherObject()), "new otherObject" + ( detail ? " - " + detail : "" ) ); + ok( jQuery.isPlainObject( new otherObject() ), "new otherObject" + ( detail ? " - " + detail : "" ) ); start(); }; try { - iframe = jQuery("#qunit-fixture")[0].appendChild( document.createElement("iframe") ); + iframe = jQuery( "#qunit-fixture" )[ 0 ].appendChild( document.createElement( "iframe" ) ); doc = iframe.contentDocument || iframe.contentWindow.document; doc.open(); - doc.write(""); + doc.write( "" ); doc.close(); - } catch(e) { + } catch ( e ) { window.iframeDone( Object, "iframes not supported" ); } -}); +} ); -test("isFunction", function() { - expect(19); +test( "isFunction", function() { + expect( 19 ); var mystr, myarr, myfunction, fn, obj, nodes, first, input, a; @@ -356,31 +356,31 @@ test("isFunction", function() { // Check built-ins // Safari uses "(Internal Function)" - ok( jQuery.isFunction(String), "String Function("+String+")" ); - ok( jQuery.isFunction(Array), "Array Function("+Array+")" ); - ok( jQuery.isFunction(Object), "Object Function("+Object+")" ); - ok( jQuery.isFunction(Function), "Function Function("+Function+")" ); + ok( jQuery.isFunction( String ), "String Function(" + String + ")" ); + ok( jQuery.isFunction( Array ), "Array Function(" + Array + ")" ); + ok( jQuery.isFunction( Object ), "Object Function(" + Object + ")" ); + ok( jQuery.isFunction( Function ), "Function Function(" + Function + ")" ); // When stringified, this could be misinterpreted mystr = "function"; - ok( !jQuery.isFunction(mystr), "Function String" ); + ok( !jQuery.isFunction( mystr ), "Function String" ); // When stringified, this could be misinterpreted myarr = [ "function" ]; - ok( !jQuery.isFunction(myarr), "Function Array" ); + ok( !jQuery.isFunction( myarr ), "Function Array" ); // When stringified, this could be misinterpreted myfunction = { "function": "test" }; - ok( !jQuery.isFunction(myfunction), "Function Object" ); + ok( !jQuery.isFunction( myfunction ), "Function Object" ); // Make sure normal functions still work - fn = function(){}; - ok( jQuery.isFunction(fn), "Normal Function" ); + fn = function() {}; + ok( jQuery.isFunction( fn ), "Normal Function" ); - obj = document.createElement("object"); + obj = document.createElement( "object" ); // Firefox says this is a function - ok( !jQuery.isFunction(obj), "Object Element" ); + ok( !jQuery.isFunction( obj ), "Object Element" ); // IE says this is an object // Since 1.3, this isn't supported (#2968) @@ -389,14 +389,14 @@ test("isFunction", function() { nodes = document.body.childNodes; // Safari says this is a function - ok( !jQuery.isFunction(nodes), "childNodes Property" ); + ok( !jQuery.isFunction( nodes ), "childNodes Property" ); first = document.body.firstChild; // Normal elements are reported ok everywhere - ok( !jQuery.isFunction(first), "A normal DOM Element" ); + ok( !jQuery.isFunction( first ), "A normal DOM Element" ); - input = document.createElement("input"); + input = document.createElement( "input" ); input.type = "text"; document.body.appendChild( input ); @@ -406,30 +406,30 @@ test("isFunction", function() { document.body.removeChild( input ); - a = document.createElement("a"); + 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" ); + ok( !jQuery.isFunction( a ), "Anchor Element" ); document.body.removeChild( a ); // Recursive function calls have lengths and array-like properties - function callme(callback){ - function fn(response){ - callback(response); + function callme( callback ) { + function fn( response ) { + callback( response ); } - ok( jQuery.isFunction(fn), "Recursive Function Call" ); + ok( jQuery.isFunction( fn ), "Recursive Function Call" ); - fn({ some: "data" }); + fn( { some: "data" } ); } - callme(function(){ - callme(function(){}); - }); -}); + callme( function() { + callme( function() {} ); + } ); +} ); test( "isNumeric", function() { expect( 38 ); @@ -478,345 +478,349 @@ test( "isNumeric", function() { equal( t( {} ), false, "Empty object" ); equal( t( [] ), false, "Empty array" ); equal( t( [ 42 ] ), false, "Array with one number" ); - equal( t( function(){} ), false, "Instance of a function" ); + equal( t( function() {} ), false, "Instance of a function" ); equal( t( new Date() ), false, "Instance of a Date" ); -}); +} ); -test("isXMLDoc - HTML", function() { - expect(4); +test( "isXMLDoc - HTML", function() { + expect( 4 ); ok( !jQuery.isXMLDoc( document ), "HTML document" ); ok( !jQuery.isXMLDoc( document.documentElement ), "HTML documentElement" ); ok( !jQuery.isXMLDoc( document.body ), "HTML Body Element" ); var body, - iframe = document.createElement("iframe"); + iframe = document.createElement( "iframe" ); document.body.appendChild( iframe ); try { - body = jQuery(iframe).contents()[0]; + body = jQuery( iframe ).contents()[ 0 ]; try { ok( !jQuery.isXMLDoc( body ), "Iframe body element" ); - } catch(e) { + } catch ( e ) { ok( false, "Iframe body element exception" ); } - } catch(e) { + } catch ( e ) { ok( true, "Iframe body element - iframe not working correctly" ); } document.body.removeChild( iframe ); -}); +} ); -test("XSS via location.hash", function() { - expect(1); +test( "XSS via location.hash", function() { + expect( 1 ); stop(); - jQuery["_check9521"] = function(x){ + jQuery[ "_check9521" ] = function( x ) { ok( x, "script called from #id-like selector with inline handler" ); - jQuery("#check9521").remove(); - delete jQuery["_check9521"]; + jQuery( "#check9521" ).remove(); + delete jQuery[ "_check9521" ]; start(); }; try { + // This throws an error because it's processed like an id - jQuery( "#" ).appendTo("#qunit-fixture"); - } catch (err) { - jQuery["_check9521"](true); + jQuery( "#" ).appendTo( "#qunit-fixture" ); + } catch ( err ) { + jQuery[ "_check9521" ]( true ); } -}); +} ); -test("isXMLDoc - XML", function() { - expect(3); +test( "isXMLDoc - XML", function() { + expect( 3 ); var xml = createDashboardXML(); ok( jQuery.isXMLDoc( xml ), "XML document" ); ok( jQuery.isXMLDoc( xml.documentElement ), "XML documentElement" ); - ok( jQuery.isXMLDoc( jQuery("tab", xml)[0] ), "XML Tab Element" ); -}); + ok( jQuery.isXMLDoc( jQuery( "tab", xml )[ 0 ] ), "XML Tab Element" ); +} ); -test("isWindow", function() { +test( "isWindow", function() { expect( 14 ); - ok( jQuery.isWindow(window), "window" ); - ok( jQuery.isWindow(document.getElementsByTagName("iframe")[0].contentWindow), "iframe.contentWindow" ); + ok( jQuery.isWindow( window ), "window" ); + ok( jQuery.isWindow( document.getElementsByTagName( "iframe" )[ 0 ].contentWindow ), "iframe.contentWindow" ); ok( !jQuery.isWindow(), "empty" ); - ok( !jQuery.isWindow(null), "null" ); - ok( !jQuery.isWindow(undefined), "undefined" ); - ok( !jQuery.isWindow(document), "document" ); - ok( !jQuery.isWindow(document.documentElement), "documentElement" ); - ok( !jQuery.isWindow(""), "string" ); - ok( !jQuery.isWindow(1), "number" ); - ok( !jQuery.isWindow(true), "boolean" ); - ok( !jQuery.isWindow({}), "object" ); - ok( !jQuery.isWindow({ setInterval: function(){} }), "fake window" ); - ok( !jQuery.isWindow(/window/), "regexp" ); - ok( !jQuery.isWindow(function(){}), "function" ); -}); - -test("jQuery('html')", function() { + ok( !jQuery.isWindow( null ), "null" ); + ok( !jQuery.isWindow( undefined ), "undefined" ); + ok( !jQuery.isWindow( document ), "document" ); + ok( !jQuery.isWindow( document.documentElement ), "documentElement" ); + ok( !jQuery.isWindow( "" ), "string" ); + ok( !jQuery.isWindow( 1 ), "number" ); + ok( !jQuery.isWindow( true ), "boolean" ); + ok( !jQuery.isWindow( {} ), "object" ); + ok( !jQuery.isWindow( { setInterval: function() {} } ), "fake window" ); + ok( !jQuery.isWindow( /window/ ), "regexp" ); + ok( !jQuery.isWindow( function() {} ), "function" ); +} ); + +test( "jQuery('html')", function() { expect( 18 ); var s, div, j; - jQuery["foo"] = false; - s = jQuery("")[0]; + jQuery[ "foo" ] = false; + s = jQuery( "" )[ 0 ]; ok( s, "Creating a script" ); - ok( !jQuery["foo"], "Make sure the script wasn't executed prematurely" ); - jQuery("body").append(""); - ok( jQuery["foo"], "Executing a scripts contents in the right context" ); + ok( !jQuery[ "foo" ], "Make sure the script wasn't executed prematurely" ); + jQuery( "body" ).append( "" ); + ok( jQuery[ "foo" ], "Executing a scripts contents in the right context" ); // Test multi-line HTML - div = jQuery("
\r\nsome text\n

some p

\nmore text\r\n
")[0]; + div = jQuery( "
\r\nsome text\n

some p

\nmore text\r\n
" )[ 0 ]; equal( div.nodeName.toUpperCase(), "DIV", "Make sure we're getting a div." ); equal( div.firstChild.nodeType, 3, "Text node." ); equal( div.lastChild.nodeType, 3, "Text node." ); - equal( div.childNodes[1].nodeType, 1, "Paragraph." ); - equal( div.childNodes[1].firstChild.nodeType, 3, "Paragraph text." ); + equal( div.childNodes[ 1 ].nodeType, 1, "Paragraph." ); + equal( div.childNodes[ 1 ].firstChild.nodeType, 3, "Paragraph text." ); - ok( jQuery("")[0], "Creating a link" ); + ok( jQuery( "" )[ 0 ], "Creating a link" ); - ok( !jQuery(""; equal( jQuery.parseHTML( html ).length, 0, "Ignore scripts by default" ); - equal( jQuery.parseHTML( html, true )[0].nodeName.toLowerCase(), "script", "Preserve scripts when requested" ); + equal( jQuery.parseHTML( html, true )[ 0 ].nodeName.toLowerCase(), "script", "Preserve scripts when requested" ); html += "
"; - equal( jQuery.parseHTML( html )[0].nodeName.toLowerCase(), "div", "Preserve non-script nodes" ); - equal( jQuery.parseHTML( html, true )[0].nodeName.toLowerCase(), "script", "Preserve script position"); + equal( jQuery.parseHTML( html )[ 0 ].nodeName.toLowerCase(), "div", "Preserve non-script nodes" ); + equal( jQuery.parseHTML( html, true )[ 0 ].nodeName.toLowerCase(), "script", "Preserve script position" ); - equal( jQuery.parseHTML("text")[0].nodeType, 3, "Parsing text returns a text node" ); - equal( jQuery.parseHTML( "\t
" )[0].nodeValue, "\t", "Preserve leading whitespace" ); + equal( jQuery.parseHTML( "text" )[ 0 ].nodeType, 3, "Parsing text returns a text node" ); + equal( jQuery.parseHTML( "\t
" )[ 0 ].nodeValue, "\t", "Preserve leading whitespace" ); - equal( jQuery.parseHTML("
")[0].nodeType, 3, "Leading spaces are treated as text nodes (#11290)" ); + equal( jQuery.parseHTML( "
" )[ 0 ].nodeType, 3, "Leading spaces are treated as text nodes (#11290)" ); html = jQuery.parseHTML( "
test div
" ); equal( html[ 0 ].parentNode.nodeType, 11, "parentNode should be documentFragment" ); equal( html[ 0 ].innerHTML, "test div", "Content should be preserved" ); - equal( jQuery.parseHTML("").length, 1, "Incorrect html-strings should not break anything" ); - equal( jQuery.parseHTML("")[ 1 ].parentNode.nodeType, 11, "parentNode should be documentFragment" ); -}); + equal( jQuery.parseHTML( "" ).length, 1, "Incorrect html-strings should not break anything" ); + equal( jQuery.parseHTML( "" )[ 1 ].parentNode.nodeType, 11, "parentNode should be documentFragment" ); +} ); if ( jQuery.support.createHTMLDocument ) { - asyncTest("jQuery.parseHTML", function() { + asyncTest( "jQuery.parseHTML", function() { expect ( 1 ); - Globals.register("parseHTMLError"); + Globals.register( "parseHTMLError" ); - jQuery.globalEval("parseHTMLError = false;"); + jQuery.globalEval( "parseHTMLError = false;" ); jQuery.parseHTML( "" ); - window.setTimeout(function() { + window.setTimeout( function() { start(); equal( window.parseHTMLError, false, "onerror eventhandler has not been called." ); - }, 2000); - }); + }, 2000 ); + } ); } -test("jQuery.parseJSON", function() { +test( "jQuery.parseJSON", function() { expect( 20 ); strictEqual( jQuery.parseJSON( null ), null, "primitive null" ); - strictEqual( jQuery.parseJSON("0.88"), 0.88, "Number" ); + strictEqual( jQuery.parseJSON( "0.88" ), 0.88, "Number" ); strictEqual( - jQuery.parseJSON("\" \\\" \\\\ \\/ \\b \\f \\n \\r \\t \\u007E \\u263a \""), + jQuery.parseJSON( "\" \\\" \\\\ \\/ \\b \\f \\n \\r \\t \\u007E \\u263a \"" ), " \" \\ / \b \f \n \r \t ~ \u263A ", "String escapes" ); - deepEqual( jQuery.parseJSON("{}"), {}, "Empty object" ); - deepEqual( jQuery.parseJSON("{\"test\":1}"), { "test": 1 }, "Plain object" ); - deepEqual( jQuery.parseJSON("[0]"), [ 0 ], "Simple array" ); + deepEqual( jQuery.parseJSON( "{}" ), {}, "Empty object" ); + deepEqual( jQuery.parseJSON( "{\"test\":1}" ), { "test": 1 }, "Plain object" ); + deepEqual( jQuery.parseJSON( "[0]" ), [ 0 ], "Simple array" ); deepEqual( - jQuery.parseJSON("[ \"string\", -4.2, 2.7180e0, 3.14E-1, {}, [], true, false, null ]"), + jQuery.parseJSON( "[ \"string\", -4.2, 2.7180e0, 3.14E-1, {}, [], true, false, null ]" ), [ "string", -4.2, 2.718, 0.314, {}, [], true, false, null ], "Array of all data types" ); deepEqual( jQuery.parseJSON( "{ \"string\": \"\", \"number\": 4.2e+1, \"object\": {}," + - "\"array\": [[]], \"boolean\": [ true, false ], \"null\": null }"), - { string: "", number: 42, object: {}, array: [[]], "boolean": [ true, false ], "null": null }, + "\"array\": [[]], \"boolean\": [ true, false ], \"null\": null }" ), + { string: "", number: 42, object: {}, array: [ [] ], "boolean": [ true, false ], "null": null }, "Dictionary of all data types" ); - deepEqual( jQuery.parseJSON("\n{\"test\":1}\t"), { "test": 1 }, + deepEqual( jQuery.parseJSON( "\n{\"test\":1}\t" ), { "test": 1 }, "Leading and trailing whitespace are ignored" ); - throws(function() { + throws( function() { jQuery.parseJSON(); }, null, "Undefined raises an error" ); - throws(function() { + throws( function() { jQuery.parseJSON( "" ); }, null, "Empty string raises an error" ); - throws(function() { - jQuery.parseJSON("''"); + throws( function() { + jQuery.parseJSON( "''" ); }, null, "Single-quoted string raises an error" ); /* @@ -1431,38 +1435,38 @@ test("jQuery.parseJSON", function() { }, null, "Number with no integer component raises an error" ); */ - throws(function() { - var result = jQuery.parseJSON("0101"); + throws( function() { + var result = jQuery.parseJSON( "0101" ); // Support: IE9+ // Ensure base-10 interpretation on browsers that erroneously accept leading-zero numbers if ( result === 101 ) { - throw new Error("close enough"); + throw new Error( "close enough" ); } }, null, "Leading-zero number raises an error or is parsed as decimal" ); - throws(function() { - jQuery.parseJSON("{a:1}"); + throws( function() { + jQuery.parseJSON( "{a:1}" ); }, null, "Unquoted property raises an error" ); - throws(function() { - jQuery.parseJSON("{'a':1}"); + throws( function() { + jQuery.parseJSON( "{'a':1}" ); }, null, "Single-quoted property raises an error" ); - throws(function() { - jQuery.parseJSON("[,]"); + throws( function() { + jQuery.parseJSON( "[,]" ); }, null, "Array element elision raises an error" ); - throws(function() { - jQuery.parseJSON("{},[]"); + throws( function() { + jQuery.parseJSON( "{},[]" ); }, null, "Comma expression raises an error" ); - throws(function() { - jQuery.parseJSON("[]\n,{}"); + throws( function() { + jQuery.parseJSON( "[]\n,{}" ); }, null, "Newline-containing comma expression raises an error" ); - throws(function() { - jQuery.parseJSON("\"\"\n\"\""); + throws( function() { + jQuery.parseJSON( "\"\"\n\"\"" ); }, null, "Automatic semicolon insertion raises an error" ); - strictEqual( jQuery.parseJSON([ 0 ]), 0, "Input cast to string" ); -}); + strictEqual( jQuery.parseJSON( [ 0 ] ), 0, "Input cast to string" ); +} ); -test("jQuery.parseXML", function(){ +test( "jQuery.parseXML", function() { expect( 8 ); var xml, tmp; @@ -1473,13 +1477,13 @@ test("jQuery.parseXML", function(){ tmp = tmp.getElementsByTagName( "b" )[ 0 ]; ok( !!tmp, " present in document" ); strictEqual( tmp.childNodes[ 0 ].nodeValue, "well-formed", " text is as expected" ); - } catch (e) { + } catch ( e ) { strictEqual( e, undefined, "unexpected error" ); } try { xml = jQuery.parseXML( "

Not a <well-formed xml string

" ); ok( false, "invalid xml not detected" ); - } catch( e ) { + } catch ( e ) { strictEqual( e.message, "Invalid XML:

Not a <well-formed xml string

", "invalid xml detected" ); } try { @@ -1491,12 +1495,12 @@ test("jQuery.parseXML", function(){ strictEqual( xml, null, "null string => null document" ); xml = jQuery.parseXML( true ); strictEqual( xml, null, "non-string => null document" ); - } catch( e ) { + } catch ( e ) { ok( false, "empty input throws exception" ); } -}); +} ); -test("jQuery.camelCase()", function() { +test( "jQuery.camelCase()", function() { var tests = { "foo-bar": "fooBar", @@ -1508,19 +1512,19 @@ test("jQuery.camelCase()", function() { "-ms-take": "msTake" }; - expect(7); + expect( 7 ); jQuery.each( tests, function( key, val ) { equal( jQuery.camelCase( key ), val, "Converts: " + key + " => " + val ); - }); -}); + } ); +} ); testIframeWithCallback( "Conditional compilation compatibility (#13274)", "core/cc_on.html", function( cc_on, errors, $ ) { expect( 3 ); ok( true, "JScript conditional compilation " + ( cc_on ? "supported" : "not supported" ) ); deepEqual( errors, [], "No errors" ); ok( $(), "jQuery executes" ); -}); +} ); // iOS7 doesn't fire the load event if the long-loading iframe gets its source reset to about:blank. // This makes this test fail but it doesn't seem to cause any real-life problems so blacklisting @@ -1529,7 +1533,7 @@ if ( !/iphone os 7_/i.test( navigator.userAgent ) ) { testIframeWithCallback( "document ready when jQuery loaded asynchronously (#13655)", "core/dynamic_ready.html", function( ready ) { expect( 1 ); equal( true, ready, "document ready correctly fired when jQuery is loaded after DOMContentLoaded" ); - }); + } ); } testIframeWithCallback( "Tolerating alias-masked DOM properties (#14074)", "core/aliased.html", -- cgit v1.2.3