<b id="floatTest">Float test.</b>
<iframe id="iframe" name="iframe"></iframe>
<form id="lengthtest">
- <input type="text" id="length" name="test">
- <input type="text" id="idTest" name="id">
+ <input type="text" id="length" name="test"/>
+ <input type="text" id="idTest" name="id"/>
</form>
<table id="table"></table>
</div>
ok( pass, "Test for appending a DOM node to the contents of an IFrame" );
reset();
- $('<fieldset>').appendTo('#form').append('<legend id="legend">test</legend>');
+ $('<fieldset/>').appendTo('#form').append('<legend id="legend">test</legend>');
t( 'Append legend', '#legend', ['legend'] );
reset();
$('#table').append('<colgroup></colgroup>');
ok( $('#table colgroup').length, "Append colgroup" );
- $('#table colgroup').append('<col>');
+ $('#table colgroup').append('<col/>');
ok( $('#table colgroup col').length, "Append col" );
reset();