Signed-off-by: Rick Waldron waldron.rick@gmail.com <waldron.rick@gmail.com>
This commit is contained in:
Rick Waldron waldron.rick@gmail.com 2012-03-23 11:31:05 -04:00
parent c68f4fe548
commit 379a137016

View File

@ -551,6 +551,15 @@ test("html(String) with HTML5 (Bug #6485)", function() {
equal( jQuery("#qunit-fixture").children().children().children().length, 1, "Make sure nested HTML5 elements can hold children." );
});
test("html() object element #10324", function() {
expect( 1 );
var object = jQuery("#object2"),
clone = object.clone();
equal( clone.html(), object.html(), "html() returns correct innerhtml of cloned object elements" );
});
test("append(xml)", function() {
expect( 1 );
@ -1751,4 +1760,4 @@ test("Guard against exceptions when clearing safeChildNodes", function() {
} catch(e) {}
ok( div && div.jquery, "Created nodes safely, guarded against exceptions on safeChildNodes[ -1 ]" );
});
});