aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2014-02-11 10:59:14 -0800
committerRick Waldron <waldron.rick@gmail.com>2014-02-11 10:59:14 -0800
commitd792e40fbc2b46346bc518483ac31772c55ebb12 (patch)
treea534c7618a37c475d25a3b157c5c47da6362ea13 /test
parent79f59c2144c1ce293454dca21d01819bdd9f52d9 (diff)
downloadjquery-d792e40fbc2b46346bc518483ac31772c55ebb12.tar.gz
jquery-d792e40fbc2b46346bc518483ac31772c55ebb12.zip
Tests: remove all the empty line whitespace
Diffstat (limited to 'test')
-rw-r--r--test/unit/manipulation.js48
-rw-r--r--test/unit/wrap.js8
2 files changed, 28 insertions, 28 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js
index 7485da459..5349cb3fc 100644
--- a/test/unit/manipulation.js
+++ b/test/unit/manipulation.js
@@ -355,7 +355,7 @@ test( "append(Function) returns String", function() {
});
test( "append(Function) returns Element", function() {
-
+
expect( 2 );
var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:",
old = jQuery("#sap").html();
@@ -368,7 +368,7 @@ test( "append(Function) returns Element", function() {
});
test( "append(Function) returns Array<Element>", function() {
-
+
expect( 2 );
var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo",
old = jQuery("#sap").html();
@@ -381,7 +381,7 @@ test( "append(Function) returns Array<Element>", function() {
});
test( "append(Function) returns jQuery", function() {
-
+
expect( 2 );
var expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:",
old = jQuery("#sap").html();
@@ -394,7 +394,7 @@ test( "append(Function) returns jQuery", function() {
});
test( "append(Function) returns Number", function() {
-
+
expect( 2 );
var old = jQuery("#sap").html();
@@ -531,7 +531,7 @@ test( "append(xml)", function() {
});
test( "appendTo(String)", function() {
-
+
expect( 4 );
var l, defaultText;
@@ -551,9 +551,9 @@ test( "appendTo(String)", function() {
});
test( "appendTo(Element|Array<Element>)", function() {
-
+
expect( 2 );
-
+
var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
jQuery( document.getElementById("first") ).appendTo("#sap");
equal( jQuery("#sap").text(), expected, "Check for appending of element" );
@@ -565,9 +565,9 @@ test( "appendTo(Element|Array<Element>)", function() {
});
test( "appendTo(jQuery)", function() {
-
+
expect( 10 );
-
+
var expected, num, div;
ok( jQuery(document.createElement("script")).appendTo("body").length, "Make sure a disconnected script can be appended." );
@@ -609,7 +609,7 @@ test( "appendTo(jQuery)", function() {
});
test( "prepend(String)", function() {
-
+
expect( 2 );
var result, expected;
@@ -620,7 +620,7 @@ test( "prepend(String)", function() {
});
test( "prepend(Element)", function() {
-
+
expect( 1 );
var expected;
@@ -630,7 +630,7 @@ test( "prepend(Element)", function() {
});
test( "prepend(Array<Element>)", function() {
-
+
expect( 1 );
var expected;
@@ -640,7 +640,7 @@ test( "prepend(Array<Element>)", function() {
});
test( "prepend(jQuery)", function() {
-
+
expect( 1 );
var expected;
@@ -650,7 +650,7 @@ test( "prepend(jQuery)", function() {
});
test( "prepend(Array<jQuery>)", function() {
-
+
expect( 1 );
var expected;
@@ -683,7 +683,7 @@ test( "prepend(Function) with incoming value -- String", function() {
});
test( "prepend(Function) with incoming value -- Element", function() {
-
+
expect( 2 );
var old, expected;
@@ -699,7 +699,7 @@ test( "prepend(Function) with incoming value -- Element", function() {
});
test( "prepend(Function) with incoming value -- Array<Element>", function() {
-
+
expect( 2 );
var old, expected;
@@ -740,7 +740,7 @@ test( "prependTo(String)", function() {
jQuery("<b>buga</b>").prependTo("#first");
equal( jQuery("#first").text(), "buga" + defaultText, "Check if text prepending works" );
equal( jQuery("<option value='prependTest'>Prepend Test</option>").prependTo("#select3").parent().find("option:first-child").attr("value"), "prependTest", "Prepending html options to select element" );
-
+
});
test( "prependTo(Element)", function() {
@@ -827,7 +827,7 @@ test( "before(jQuery)", function() {
jQuery("#yahoo").before( manipulationBareObj(jQuery("#mark, #first")) );
equal( jQuery("#en").text(), expected, "Insert jQuery before" );
});
-
+
test( "before(Array<jQuery>)", function() {
expect( 1 );
@@ -879,7 +879,7 @@ test( "before(Function) -- Returns jQuery", function() {
jQuery("#yahoo").before( manipulationFunctionReturningObj(jQuery("#mark, #first")) );
equal( jQuery("#en").text(), expected, "Insert jQuery before" );
});
-
+
test( "before(Function) -- Returns Array<jQuery>", function() {
expect( 1 );
@@ -913,7 +913,7 @@ test( "before and after w/ empty object (#10812)", function() {
test( ".before() and .after() disconnected node", function() {
expect(2);
-
+
equal( jQuery("<input type='checkbox'/>").before("<div/>").length, 1, "before() on disconnected node is no-op" );
equal( jQuery("<input type='checkbox'/>").after("<div/>").length, 1, "after() on disconnected node is no-op" );
});
@@ -997,7 +997,7 @@ test( "insertBefore(jQuery)", function() {
test( ".after(String)", function() {
expect( 1 );
-
+
var expected = "This is a normal link: Yahoobuga";
jQuery("#yahoo").after( "<b>buga</b>" );
equal( jQuery("#en").text(), expected, "Insert String after" );
@@ -1091,7 +1091,7 @@ test( "insertAfter(String)", function() {
test( "insertAfter(Element)", function() {
expect(1);
-
+
var expected = "This is a normal link: YahooTry them out:";
jQuery( document.getElementById("first") ).insertAfter("#yahoo");
equal( jQuery("#en").text(), expected, "Insert element after" );
@@ -1100,7 +1100,7 @@ test( "insertAfter(Element)", function() {
test( "insertAfter(Array<Element>)", function() {
expect(1);
-
+
var expected = "This is a normal link: YahooTry them out:diveintomark";
jQuery( [ document.getElementById("first"), document.getElementById("mark") ] ).insertAfter("#yahoo");
equal( jQuery("#en").text(), expected, "Insert array of elements after" );
@@ -1109,7 +1109,7 @@ test( "insertAfter(Array<Element>)", function() {
test( "insertAfter(jQuery)", function() {
expect(1);
-
+
var expected = "This is a normal link: YahoodiveintomarkTry them out:";
jQuery("#mark, #first").insertAfter("#yahoo");
equal( jQuery("#en").text(), expected, "Insert jQuery after" );
diff --git a/test/unit/wrap.js b/test/unit/wrap.js
index dace69df2..c75e02ff9 100644
--- a/test/unit/wrap.js
+++ b/test/unit/wrap.js
@@ -174,7 +174,7 @@ test( "wrapInner(String)", function() {
equal( jQuery("#first").children().length, 1, "Only one child" );
ok( jQuery("#first").children().is(".red"), "Verify Right Element" );
equal( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" );
-
+
num = jQuery("#first").html("foo<div>test</div><div>test2</div>").children().length;
jQuery("#first").wrapInner( "<div class='red'><div id='tmp'></div></div>" );
equal( jQuery("#first").children().length, 1, "Only one child" );
@@ -188,7 +188,7 @@ test( "wrapInner(Element)", function() {
var num,
div = jQuery("<div/>");
-
+
num = jQuery("#first").children().length;
jQuery("#first").wrapInner( document.getElementById("empty") );
equal( jQuery("#first").children().length, 1, "Only one child" );
@@ -213,7 +213,7 @@ test( "wrapInner(Function) returns String", function() {
equal( jQuery("#first").children().length, 1, "Only one child" );
ok( jQuery("#first").children().is(".red"), "Verify Right Element" );
equal( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" );
-
+
num = jQuery("#first").html("foo<div>test</div><div>test2</div>").children().length;
jQuery("#first").wrapInner( val("<div class='red'><div id='tmp'></div></div>") );
equal( jQuery("#first").children().length, 1, "Only one child" );
@@ -228,7 +228,7 @@ test( "wrapInner(Function) returns Element", function() {
var num,
val = manipulationFunctionReturningObj,
div = jQuery("<div/>");
-
+
num = jQuery("#first").children().length;
jQuery("#first").wrapInner( val(document.getElementById("empty")) );
equal( jQuery("#first").children().length, 1, "Only one child" );