Use a for loop rather than for/in loop when copying events, so that code will work...
[jquery.git] / test / unit / manipulation.js
index 29c79a2..cbc0b77 100644 (file)
@@ -1,5 +1,8 @@
 module("manipulation");
 
+// Ensure that an extended Array prototype doesn't break jQuery
+Array.prototype.arrayProtoFn = function(arg) { throw("arrayProtoFn should not be called"); };
+
 var bareObj = function(value) { return value; };
 var functionReturningObj = function(value) { return (function() { return value; }); };
 
@@ -382,13 +385,13 @@ test("append(Function) with incoming value", function() {
 });
 
 test("append the same fragment with events (Bug #6997, 5566)", function () {
-       expect(2 + (document.fireEvent ? 1 : 0));
+       expect(4 + (document.fireEvent ? 1 : 0));
        stop(1000);
 
        var element;
 
        // This patch modified the way that cloning occurs in IE; we need to make sure that
-       // native event handlers on the original object don’t get disturbed when they are
+       // native event handlers on the original object don't get disturbed when they are
        // modified on the clone
        if (!jQuery.support.noCloneEvent && document.fireEvent) {
                element = jQuery("div:first").click(function () {
@@ -413,6 +416,14 @@ test("append the same fragment with events (Bug #6997, 5566)", function () {
 
        jQuery("#listWithTabIndex li").before(element);
        jQuery("#listWithTabIndex li.test6997").eq(1).click();
+
+       element = jQuery("<select><option>Foo</option><option selected>Bar</option></select>");
+
+       equals( element.clone().find("option:selected").val(), element.find("option:selected").val(), "Selected option cloned correctly" );
+
+       element = jQuery("<input type='checkbox'>").attr('checked', 'checked');
+
+       equals( element.clone().is(":checked"), element.is(":checked"), "Checked input cloned correctly" );
 });
 
 test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
@@ -890,7 +901,7 @@ test("clone()", function() {
 
        // this is technically an invalid object, but because of the special
        // classid instantiation it is the only kind that IE has trouble with,
-       // so let’s test with it too.
+       // so let's test with it too.
        div = jQuery("<div/>").html('<object height="355" width="425" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">  <param name="movie" value="http://www.youtube.com/v/3KANI2dpXLw&amp;hl=en">  <param name="wmode" value="transparent"> </object>');
 
        clone = div.clone(true);