From: John Resig Date: Tue, 3 Oct 2006 08:37:58 +0000 (+0000) Subject: Fixed test suite bug with Opera with the .attr('action') test. Opera always returns... X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=301e2b64937cf1b03899f0583a9c6de1086820a5;p=jquery.git Fixed test suite bug with Opera with the .attr('action') test. Opera always returns a fully-qualified URL, not just 'formaction'. Boooo. --- diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index cda8fae..67dfd6b 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -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.