aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2013-03-14 00:23:36 +0100
committerDave Methvin <dave.methvin@gmail.com>2013-04-03 20:41:41 -0400
commit4adde5d14534799f3bcfac2771e1513be8a56a2f (patch)
tree7f5a93fc640e45a30a973afdd03abacf429218e0 /test/unit
parent65a6648932d197629fc454f37ce3157a51c2921a (diff)
downloadjquery-4adde5d14534799f3bcfac2771e1513be8a56a2f.tar.gz
jquery-4adde5d14534799f3bcfac2771e1513be8a56a2f.zip
Update grunt-contrib-jshint to 0.3.0, ref gh-1204.
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/ajax.js26
-rw-r--r--test/unit/attributes.js8
2 files changed, 17 insertions, 17 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js
index bf0403b98..a60664245 100644
--- a/test/unit/ajax.js
+++ b/test/unit/ajax.js
@@ -199,7 +199,7 @@ module( "ajax", {
tmp.push( i, ": ", requestHeaders[ i ], "\n" );
}
tmp = tmp.join("");
-
+
strictEqual( data, tmp, "Headers were sent" );
strictEqual( xhr.getResponseHeader("Sample-Header"), "Hello World", "Sample header received" );
@@ -299,7 +299,7 @@ module( "ajax", {
samePort = loc.port || ( loc.protocol === "http:" ? 80 : 443 ),
otherPort = loc.port === 666 ? 667 : 666,
otherProtocol = loc.protocol === "http:" ? "https:" : "http:";
-
+
return [
request(
loc.protocol + "//" + loc.host + ":" + samePort,
@@ -390,7 +390,7 @@ module( "ajax", {
}]
};
});
-
+
ajaxTest( "jQuery.ajax() - events without context", 3, function() {
function nocallback( msg ) {
return function() {
@@ -601,9 +601,9 @@ module( "ajax", {
});
ajaxTest( "jQuery.ajax() - cache", 12, function() {
-
+
var re = /_=(.*?)(&|$)/g;
-
+
function request( url, title ) {
return {
url: url,
@@ -620,7 +620,7 @@ module( "ajax", {
error: true
};
}
-
+
return [
request(
"data/text.php",
@@ -1356,7 +1356,7 @@ module( "ajax", {
}
}
]);
-
+
jQuery.each( [ " - Same Domain", " - Cross Domain" ], function( crossDomain, label ) {
ajaxTest( "#8205 - jQuery.ajax() - JSONP - re-use callbacks name" + label, 2, {
url: "data/jsonp.php",
@@ -1401,7 +1401,7 @@ module( "ajax", {
});
jQuery.each( [ "as argument", "in settings object" ], function( inSetting, title ) {
-
+
function request( url, test ) {
return {
create: function() {
@@ -1412,14 +1412,14 @@ module( "ajax", {
}
};
}
-
+
ajaxTest( "#10093 - jQuery.ajax() - falsy url " + title, 4, [
request( "", "empty string" ),
request( false ),
request( null ),
request( undefined )
]);
-
+
});
ajaxTest( "#11151 - jQuery.ajax() - parse error body", 2, {
@@ -1492,7 +1492,7 @@ module( "ajax", {
request()
]
});
-
+
});
ajaxTest( "#13276 - jQuery.ajax() - compatibility between XML documents from ajax requests and parsed string", 1, {
@@ -1510,7 +1510,7 @@ module( "ajax", {
strictEqual( ajaxXML.find("tab").length, 3, "Parsed node was added properly" );
}
});
-
+
ajaxTest( "#13292 - jQuery.ajax() - converter is bypassed for 204 requests", 3, {
url: "data/nocontent.php",
dataType: "testing",
@@ -1744,7 +1744,7 @@ module( "ajax", {
});
//----------- jQuery.fn.load()
-
+
// check if load can be called with only url
asyncTest( "jQuery.fn.load( String )", 2, function() {
jQuery.ajaxSetup({
diff --git a/test/unit/attributes.js b/test/unit/attributes.js
index f0ca137e6..2292d7ff5 100644
--- a/test/unit/attributes.js
+++ b/test/unit/attributes.js
@@ -852,17 +852,17 @@ test( "val()", function() {
test("val() with non-matching values on dropdown list", function() {
expect( 3 );
-
+
jQuery("#select5").val( "" );
equal( jQuery("#select5").val(), null, "Non-matching set on select-one" );
-
+
var select6 = jQuery("<select multiple id=\"select6\"><option value=\"1\">A</option><option value=\"2\">B</option></select>").appendTo("#form");
jQuery(select6).val( "nothing" );
equal( jQuery(select6).val(), null, "Non-matching set (single value) on select-multiple" );
-
+
jQuery(select6).val( ["nothing1", "nothing2"] );
equal( jQuery(select6).val(), null, "Non-matching set (array of values) on select-multiple" );
-
+
select6.remove();
});