mirror of
https://github.com/jquery/jquery.git
synced 2026-01-23 22:48:17 -05:00
Tweak broken serialize tests from commit 879799fe95. Thanks to @jaubourg for the catch.
This commit is contained in:
@@ -362,11 +362,11 @@ test("serialize()", function() {
|
||||
);
|
||||
|
||||
equals( jQuery('#form').serialize(),
|
||||
"action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2",
|
||||
"action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&select5=3",
|
||||
'Check form serialization as query string');
|
||||
|
||||
equals( jQuery('#form :input').serialize(),
|
||||
"action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2",
|
||||
"action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&select5=3",
|
||||
'Check input serialization as query string');
|
||||
|
||||
equals( jQuery('#testForm').serialize(),
|
||||
@@ -378,7 +378,7 @@ test("serialize()", function() {
|
||||
'Check input serialization as query string');
|
||||
|
||||
equals( jQuery('#form, #testForm').serialize(),
|
||||
"action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
|
||||
"action=Test&radio2=on&check=on&hidden=&foo%5Bbar%5D=&name=name&search=search&email=dave%40jquery.com&number=43&select1=&select2=3&select3=1&select3=2&select5=3&T3=%3F%0AZ&H1=x&H2=&PWD=&T1=&T2=YES&My+Name=me&S1=abc&S3=YES&S4=",
|
||||
'Multiple form serialization as query string');
|
||||
|
||||
/* Temporarily disabled. Opera 10 has problems with form serialization.
|
||||
|
||||
Reference in New Issue
Block a user