Skip to content
Permalink
Browse files
Signed-off-by: Rick Waldron waldron.rick@gmail.com <waldron.rick@gmail.com>
  • Loading branch information
rwaldron committed Mar 23, 2012
1 parent c68f4fe commit 379a137
Showing 1 changed file with 10 additions and 1 deletion.
@@ -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 ]" );
});
});

0 comments on commit 379a137

Please sign in to comment.