aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/selector.js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-01-20 19:44:08 +0000
committerJohn Resig <jeresig@gmail.com>2009-01-20 19:44:08 +0000
commitaa7616cf9aac1692a483165144a42cde9a3169e0 (patch)
treebdeeeeff7725dcb29f50b41b5a59a0b500461d6a /test/unit/selector.js
parentcd28922b78a91c530c509638294fe3fac9c361f3 (diff)
downloadjquery-aa7616cf9aac1692a483165144a42cde9a3169e0.tar.gz
jquery-aa7616cf9aac1692a483165144a42cde9a3169e0.zip
Added support for a[name^='foo['] style selectors. Fies jQuery bug #3928.
Diffstat (limited to 'test/unit/selector.js')
-rw-r--r--test/unit/selector.js16
1 files changed, 14 insertions, 2 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js
index 6057236a1..4bc15773f 100644
--- a/test/unit/selector.js
+++ b/test/unit/selector.js
@@ -197,7 +197,7 @@ test("child and adjacent", function() {
});
test("attributes", function() {
- expect(27);
+ expect(34);
t( "Attribute Exists", "a[title]", ["google"] );
t( "Attribute Exists", "*[title]", ["google"] );
t( "Attribute Exists", "[title]", ["google"] );
@@ -221,6 +221,14 @@ test("attributes", function() {
if ( document.querySelectorAll ) {
results = ["radio1", "radio2", "hidden1"];
}
+
+ t( "Attribute containing []", "input[name^='foo[']", ["hidden2"] );
+ t( "Attribute containing []", "input[name^='foo[bar]']", ["hidden2"] );
+ t( "Attribute containing []", "input[name*='[bar]']", ["hidden2"] );
+ t( "Attribute containing []", "input[name$='bar]']", ["hidden2"] );
+ t( "Attribute containing []", "input[name$='[bar]']", ["hidden2"] );
+ t( "Attribute containing []", "input[name$='foo[bar]']", ["hidden2"] );
+ t( "Attribute containing []", "input[name*='foo[bar]']", ["hidden2"] );
t( "Multiple Attribute Equals", "#form input[type='hidden'],#form input[type='radio']", results );
t( "Multiple Attribute Equals", "#form input[type=\"hidden\"],#form input[type='radio']", results );
@@ -244,7 +252,7 @@ test("attributes", function() {
});
test("pseudo (:) selectors", function() {
- expect(51);
+ expect(53);
t( "First Child", "p:first-child", ["firstp","sndp"] );
t( "Last Child", "p:last-child", ["sap"] );
t( "Only Child", "a:only-child", ["simon1","anchor1","yahoo","anchor2"] );
@@ -255,6 +263,10 @@ test("pseudo (:) selectors", function() {
t( "Selected Option Element", "#form option:selected", ["option1a","option2d","option3b","option3c"] );
t( "Text Contains", "a:contains('Google')", ["google","groups"] );
t( "Text Contains", "a:contains('Google Groups')", ["groups"] );
+
+ t( "Text Contains", "a:contains('Google Groups (Link)')", ["groups"] );
+ t( "Text Contains", "a:contains('(Link)')", ["groups"] );
+
t( "Element Preceded By", "p ~ div", ["foo","fx-queue","fx-tests", "moretests","tabindex-tests"] );
t( "Not", "a.blog:not(.link)", ["mark"] );
t( "Not - multiple", "#form option:not(:contains('Nothing'),#option1b,:selected)", ["option1c", "option1d", "option2b", "option2c", "option3d", "option3e"] );