Fixed test suite bug with Opera with the .attr('action') test. Opera always returns...
authorJohn Resig <jeresig@gmail.com>
Tue, 3 Oct 2006 08:37:58 +0000 (08:37 +0000)
committerJohn Resig <jeresig@gmail.com>
Tue, 3 Oct 2006 08:37:58 +0000 (08:37 +0000)
src/jquery/jquery.js

index cda8fae..67dfd6b 100644 (file)
@@ -391,8 +391,8 @@ jQuery.fn = jQuery.prototype = {
         * ok( $('#simon').attr('class') == "blog link", 'Check for class attribute' );
         * ok( $('#name').attr('name') == "name", 'Check for name attribute' );
         * ok( $('#text1').attr('name') == "action", 'Check for name attribute' );
-        * ok( $('#form').attr('action') == "formaction", 'Check for action attribute' );
-        * 
+        * ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );
+        *
         * @name attr
         * @type Object
         * @param String name The name of the property to access.