diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-10-13 14:56:14 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-10-13 14:56:14 +0000 |
commit | e7669f64d88612884df27c5744558191f8e6c8b1 (patch) | |
tree | fbff6601628dd830ed8ca85f6f513ab0b94ed56a /src/jquery/jquery.js | |
parent | bfa8306633da9c2500e4f3e190c81a9827a8f95a (diff) | |
download | jquery-e7669f64d88612884df27c5744558191f8e6c8b1.tar.gz jquery-e7669f64d88612884df27c5744558191f8e6c8b1.zip |
Added test for #174; Modified failing (IE) tests for find
Diffstat (limited to 'src/jquery/jquery.js')
-rw-r--r-- | src/jquery/jquery.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 1535fb5d4..7a59a4ea6 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1661,9 +1661,9 @@ jQuery.extend({ * t( "Attribute Exists", "*[@title]", ["google"] ); * t( "Attribute Exists", "[@title]", ["google"] ); * - * t( "Non-existing part of attribute [@name*=bla]", "[@name*=bla]", [] ); - * t( "Non-existing start of attribute [@name^=bla]", "[@name^=bla]", [] ); - * t( "Non-existing end of attribute [@name$=bla]", "[@name$=bla]", [] ); + * t( "Non-existing part of attribute", "[@name*=bla]", [] ); + * t( "Non-existing start of attribute", "[@name^=bla]", [] ); + * t( "Non-existing end of attribute", "[@name$=bla]", [] ); * * t( "Attribute Equals", "a[@rel='bookmark']", ["simon1"] ); * t( "Attribute Equals", 'a[@rel="bookmark"]', ["simon1"] ); |