From 6a9b73c7b97b7a1dbb3febde80aef70ebe162cd2 Mon Sep 17 00:00:00 2001 From: Ariel Flesler Date: Thu, 8 May 2008 17:11:03 +0000 Subject: [PATCH] test runner: extra tests for $.fn.add enabled by [5503] and a small fix for an html() test. --- test/unit/core.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/test/unit/core.js b/test/unit/core.js index ea13de2..d4cc165 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -261,7 +261,7 @@ test("get(Number)", function() { }); test("add(String|Element|Array|undefined)", function() { - expect(8); + expect(12); isSet( $("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" ); isSet( $("#sndp").add( $("#en")[0] ).add( $("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" ); ok( $([]).add($("#form")[0].elements).length >= 13, "Check elements from array" ); @@ -280,6 +280,12 @@ test("add(String|Element|Array|undefined)", function() { var notDefined; equals( $([]).add(notDefined).length, 0, "Check that undefined adds nothing" ); + + // Added after #2811 + equals( $([]).add([window,document,document.body,document]).length, 3, "Pass an array" ); + equals( $(document).add(document).length, 1, "Check duplicated elements" ); + equals( $(window).add(window).length, 1, "Check duplicated elements using the window" ); + ok( $([]).add( document.getElementById('form') ).length >= 13, "Add a form (adds the elements)" ); }); test("each(Function)", function() { @@ -1148,6 +1154,9 @@ test("html(String)", function() { // using contents will get comments regular, text, and comment nodes var j = $("#nonnodes").contents(); j.html("bold"); + + // this is needed, or the expando added by jQuery unique will yield a different html + j.find('b').removeData(); equals( j.html().toLowerCase(), "bold", "Check node,textnode,comment with html()" ); $("#main").html("