]> source.dussan.org Git - jquery.git/commitdiff
Fix attribute names in aliased form property test. Close gh-951.
authorJonathan Sampson <jjdsampson@gmail.com>
Thu, 11 Oct 2012 18:30:51 +0000 (15:30 -0300)
committerDave Methvin <dave.methvin@gmail.com>
Sat, 20 Oct 2012 18:58:19 +0000 (14:58 -0400)
Test expects input elements having name='id', name='name', and name='target'. Additionally, these should have id='id', id='name', and id='target' respectively. No element was provided with id='id' or name='id', but rather one element had two name attributes (illegal) with the values 'id' and 'name' respectively.

test/unit/attributes.js

index 1c878f37a8fa44c5cab09f3264799e9701471609..7795b88b59e54df31aee3784ccfd62a059872ff5 100644 (file)
@@ -73,7 +73,7 @@ test( "attr(String)", function() {
        equal( jQuery("#foo").attr("height"), undefined, "Non existent height attribute should return undefined" );
 
        // [7472] & [3113] (form contains an input with name="action" or name="id")
-       var extras = jQuery("<input name='id' name='name' /><input id='target' name='target' />").appendTo("#testForm");
+       var extras = jQuery("<input id='id' name='id' /><input id='name' name='name' /><input id='target' name='target' />").appendTo("#testForm");
        equal( jQuery("#form").attr("action","newformaction").attr("action"), "newformaction", "Check that action attribute was changed" );
        equal( jQuery("#testForm").attr("target"), undefined, "Retrieving target does not equal the input with name=target" );
        equal( jQuery("#testForm").attr("target", "newTarget").attr("target"), "newTarget", "Set target successfully on a form" );