From: Rick Waldron Date: Wed, 11 Apr 2012 16:00:42 +0000 (-0400) Subject: Amends #10324. Remove object markup fixture; create programmatically X-Git-Tag: 1.8b1~207 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5181ce0f35cf941ae2d7f5da2cf98ebcc638daff;p=jquery.git Amends #10324. Remove object markup fixture; create programmatically --- diff --git a/test/index.html b/test/index.html index c24b4d2d0..c1320ccad 100644 --- a/test/index.html +++ b/test/index.html @@ -135,7 +135,6 @@ - ​ diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index cf1ecf862..9209b1dd9 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -563,7 +563,7 @@ test("IE8 serialization bug", function () { wrapper.html("
"); equal( wrapper.children("article").length, 1, "HTML5 elements are insertable with .html()"); - + wrapper.html("
"); equal( wrapper.children("link").length, 1, "Link elements are insertable with .html()"); }); @@ -571,7 +571,7 @@ test("IE8 serialization bug", function () { test("html() object element #10324", function() { expect( 1 ); - var object = jQuery("#object2"), + var object = jQuery("​").appendTo("#qunit-fixture"), clone = object.clone(); equal( clone.html(), object.html(), "html() returns correct innerhtml of cloned object elements" );