From 5181ce0f35cf941ae2d7f5da2cf98ebcc638daff Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Wed, 11 Apr 2012 12:00:42 -0400 Subject: [PATCH] Amends #10324. Remove object markup fixture; create programmatically --- test/index.html | 1 - test/unit/manipulation.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) 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" );