From 3892df207d7a4a3babf5017a309263cceff48b65 Mon Sep 17 00:00:00 2001 From: timmywil Date: Fri, 25 Mar 2011 10:40:46 -0400 Subject: Add test for bug #3116 --- test/unit/attributes.js | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/unit/attributes.js b/test/unit/attributes.js index 96a836f3d..161237719 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -160,7 +160,7 @@ test("attr(Hash)", function() { }); test("attr(String, Object)", function() { - expect(28); + expect(29); var div = jQuery("div").attr("foo", "bar"), fail = false; @@ -220,9 +220,9 @@ test("attr(String, Object)", function() { jQuery("#name").attr('someAttr', '0'); equals( jQuery("#name").attr('someAttr'), '0', 'Set attribute to a string of "0"' ); jQuery("#name").attr('someAttr', 0); - equals( jQuery("#name").attr('someAttr'), 0, 'Set attribute to the number 0' ); + equals( jQuery("#name").attr('someAttr'), '0', 'Set attribute to the number 0' ); jQuery("#name").attr('someAttr', 1); - equals( jQuery("#name").attr('someAttr'), 1, 'Set attribute to the number 1' ); + equals( jQuery("#name").attr('someAttr'), '1', 'Set attribute to the number 1' ); // using contents will get comments regular, text, and comment nodes var j = jQuery("#nonnodes").contents(); @@ -232,7 +232,8 @@ test("attr(String, Object)", function() { j.removeAttr("name"); QUnit.reset(); - + + // Type var type = jQuery("#check2").attr('type'); var thrown = false; try { @@ -272,6 +273,13 @@ test("attr(String, Object)", function() { } ok( thrown, "Exception thrown when trying to change type property" ); equals( "button", button.attr('type'), "Verify that you can't change the type of a button element" ); + + // Setting attributes on svg elements (bug #3116) + var $svg = jQuery('' + + '' + + '').appendTo('body'); + equals( $svg.attr('cx', 100).attr('cx'), "100", "Set attribute on svg element" ); + $svg.remove(); }); test("attr(jquery_method)", function(){ -- cgit v1.2.3