From de213be3728a339e1f2b98712a0869f8afb9da67 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Wed, 25 Jul 2012 14:38:55 -0400 Subject: Revert "Fix #12127. IE9/10 checks fall off the box on clone. Close gh-873." This reverts commit 569d064fc93459695cb6eb6fd09e5ba3fda62f03. Causing test fails in Safari, IE6, and IE7. --- test/unit/manipulation.js | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'test/unit') diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index e2b00a662..31426e739 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -1895,14 +1895,3 @@ test("html() - script exceptions bubble (#11743)", function() { ok( false, "error ignored" ); }, "exception bubbled from remote script" ); }); - -test("checked state is cloned with clone()", function(){ - expect(2); - - var elem = jQuery.parseHTML('')[0]; - elem.checked = false; - equal( jQuery(elem).clone().attr('id','clone')[0].checked, false, 'Checked false state correctly cloned' ); - elem = jQuery.parseHTML('')[0]; - elem.checked = true; - equal( jQuery(elem).clone().attr('id','clone')[0].checked, true, 'Checked true state correctly cloned' ); -}); -- cgit v1.2.3