Fixed test suite bug with Opera with the .attr('action') test. Opera always returns a fully-qualified URL, not just 'formaction'. Boooo.

This commit is contained in:
John Resig 2006-10-03 08:37:58 +00:00
parent 9203775234
commit 301e2b6493

View 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.