aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-02-18 21:57:46 +0000
committerJohn Resig <jeresig@gmail.com>2009-02-18 21:57:46 +0000
commit3e6c7f083c6fe2b93517153c81472604fc7bd745 (patch)
treec2f51a537a21c92eb243a8bf72c346b9309d1dd6
parent481171a3f81c46b9e46ffbf76a5cddcec83be850 (diff)
downloadjquery-3e6c7f083c6fe2b93517153c81472604fc7bd745.tar.gz
jquery-3e6c7f083c6fe2b93517153c81472604fc7bd745.zip
Missed an other search-related test.
-rw-r--r--test/unit/selector.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js
index 148151d5b..3b450006b 100644
--- a/test/unit/selector.js
+++ b/test/unit/selector.js
@@ -385,7 +385,7 @@ test("pseudo (:) selectors", function() {
t( "Form element :input", "#form :input", ["text1", "text2", "radio1", "radio2", "check1", "check2", "hidden1", "hidden2", "name", "search", "button", "area1", "select1", "select2", "select3"] );
t( "Form element :radio", "#form :radio", ["radio1", "radio2"] );
t( "Form element :checkbox", "#form :checkbox", ["check1", "check2"] );
- t( "Form element :text", "#form :text", ["text1", "text2", "hidden2", "name"] );
+ t( "Form element :text", "#form :text", ["text1", "text2", "hidden2", "name", "search"] );
t( "Form element :radio:checked", "#form :radio:checked", ["radio2"] );
t( "Form element :checkbox:checked", "#form :checkbox:checked", ["check1"] );
t( "Form element :radio:checked, :checkbox:checked", "#form :radio:checked, #form :checkbox:checked", ["radio2", "check1"] );