Added test to verify bug #160, had to modify fixture (index.html)
authorJörn Zaefferer <joern.zaefferer@gmail.com>
Sat, 9 Sep 2006 23:21:30 +0000 (23:21 +0000)
committerJörn Zaefferer <joern.zaefferer@gmail.com>
Sat, 9 Sep 2006 23:21:30 +0000 (23:21 +0000)
build/test/index.html
src/jquery/jquery.js

index 3af2240..e05c176 100644 (file)
@@ -32,8 +32,8 @@
                <p id="first">Try them out:</p>\r
                <ul id="firstUL"></ul>
                <ol id="empty"></ol>
-               <form id="form">
-                       <input type="text" value="Test" id="text1"/>
+               <form id="form" action="formaction">
+                       <input type="text" value="Test" name="action" id="text1"/>
                        <input type="text" value="Test" id="text2" disabled="disabled"/>
                        <input type="radio" name="radio1" id="radio1"/>
 
@@ -42,7 +42,7 @@
                        <input type="checkbox" name="check" id="check2"/>
 
                        <input type="hidden" name="hidden" id="hidden1"/>
-                       <input type="text" style="display:none;" id="hidden2"/>\r
+                       <input type="text" style="display:none;" name="foo[bar]" id="hidden2"/>\r
                        \r
                        <input type="text" id="name" name="name" value="name" />\r
                        \r
index 4fe14f8..c1d64f2 100644 (file)
@@ -390,6 +390,8 @@ jQuery.fn = jQuery.prototype = {
         * @test ok( $('#en').attr('lang') == "en", 'Check for lang attribute' );
         * @test ok( $('#simon').attr('class') == "blog link", 'Check for class attribute' );
         * @test ok( $('#name').attr('name') == "name", 'Check for name attribute' );
+        * @test ok( $('#text1').attr('name') == "action", 'Check for name attribute' );
+        * @test ok( $('#form').attr('action') == "formaction", 'Check for action attribute' );
         * 
         * @name attr
         * @type Object