Skip to content

Commit 3e6c7f0

Browse files
committed
Missed an other search-related test.
1 parent 481171a commit 3e6c7f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/selector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ test("pseudo (:) selectors", function() {
385385
t( "Form element :input", "#form :input", ["text1", "text2", "radio1", "radio2", "check1", "check2", "hidden1", "hidden2", "name", "search", "button", "area1", "select1", "select2", "select3"] );
386386
t( "Form element :radio", "#form :radio", ["radio1", "radio2"] );
387387
t( "Form element :checkbox", "#form :checkbox", ["check1", "check2"] );
388-
t( "Form element :text", "#form :text", ["text1", "text2", "hidden2", "name"] );
388+
t( "Form element :text", "#form :text", ["text1", "text2", "hidden2", "name", "search"] );
389389
t( "Form element :radio:checked", "#form :radio:checked", ["radio2"] );
390390
t( "Form element :checkbox:checked", "#form :checkbox:checked", ["check1"] );
391391
t( "Form element :radio:checked, :checkbox:checked", "#form :radio:checked, #form :checkbox:checked", ["radio2", "check1"] );

0 commit comments

Comments
 (0)