Make sure that the correct value is being pulled from checkboxes in Webkit. Fixes #5699.

This commit is contained in:
jeresig 2009-12-22 02:00:46 -05:00
parent 1b67aaee74
commit 1e64d58183
3 changed files with 24 additions and 6 deletions

View file

@ -619,7 +619,7 @@ test("clone() on XML nodes", function() {
}
test("val()", function() {
expect(15);
expect(17);
document.getElementById('text1').value = "bla";
equals( jQuery("#text1").val(), "bla", "Check for modified value of input element" );
@ -648,10 +648,13 @@ test("val()", function() {
var checks = jQuery("<input type='checkbox' name='test' value='1'/>").appendTo("#form")
.add( jQuery("<input type='checkbox' name='test' value='2'/>").appendTo("#form") )
.add( jQuery("<input type='checkbox' name='test' value=''/>").appendTo("#form") );
.add( jQuery("<input type='checkbox' name='test' value=''/>").appendTo("#form") )
.add( jQuery("<input type='checkbox' name='test'/>").appendTo("#form") );
same( checks.serialize(), "", "Get unchecked values." );
equals( checks.eq(3).val(), "on", "Make sure a value of 'on' is provided if none is specified." );
checks.val([ "2" ]);
same( checks.serialize(), "test=2", "Get a single checked value." );
@ -661,6 +664,9 @@ test("val()", function() {
checks.val([ "", "2" ]);
same( checks.serialize(), "test=2&test=", "Get multiple checked values." );
checks.val([ "1", "on" ]);
same( checks.serialize(), "test=1&test=on", "Get multiple checked values." );
checks.remove();
});