Making the test suite a little more XML-compliant.
This commit is contained in:
parent
bdb5dad8e5
commit
5ed992d5f5
|
@ -91,8 +91,8 @@
|
||||||
<b id="floatTest">Float test.</b>
|
<b id="floatTest">Float test.</b>
|
||||||
<iframe id="iframe" name="iframe"></iframe>
|
<iframe id="iframe" name="iframe"></iframe>
|
||||||
<form id="lengthtest">
|
<form id="lengthtest">
|
||||||
<input type="text" id="length" name="test">
|
<input type="text" id="length" name="test"/>
|
||||||
<input type="text" id="idTest" name="id">
|
<input type="text" id="idTest" name="id"/>
|
||||||
</form>
|
</form>
|
||||||
<table id="table"></table>
|
<table id="table"></table>
|
||||||
</div>
|
</div>
|
||||||
|
|
4
src/jquery/coreTest.js
vendored
4
src/jquery/coreTest.js
vendored
|
@ -407,7 +407,7 @@ test("append(String|Element|Array<Element>|jQuery)", function() {
|
||||||
ok( pass, "Test for appending a DOM node to the contents of an IFrame" );
|
ok( pass, "Test for appending a DOM node to the contents of an IFrame" );
|
||||||
|
|
||||||
reset();
|
reset();
|
||||||
$('<fieldset>').appendTo('#form').append('<legend id="legend">test</legend>');
|
$('<fieldset/>').appendTo('#form').append('<legend id="legend">test</legend>');
|
||||||
t( 'Append legend', '#legend', ['legend'] );
|
t( 'Append legend', '#legend', ['legend'] );
|
||||||
|
|
||||||
reset();
|
reset();
|
||||||
|
@ -417,7 +417,7 @@ test("append(String|Element|Array<Element>|jQuery)", function() {
|
||||||
$('#table').append('<colgroup></colgroup>');
|
$('#table').append('<colgroup></colgroup>');
|
||||||
ok( $('#table colgroup').length, "Append colgroup" );
|
ok( $('#table colgroup').length, "Append colgroup" );
|
||||||
|
|
||||||
$('#table colgroup').append('<col>');
|
$('#table colgroup').append('<col/>');
|
||||||
ok( $('#table colgroup col').length, "Append col" );
|
ok( $('#table colgroup col').length, "Append col" );
|
||||||
|
|
||||||
reset();
|
reset();
|
||||||
|
|
Loading…
Reference in a new issue