Append colgroup and col elements (#1044)

This commit is contained in:
Brandon Aaron 2007-04-30 01:43:52 +00:00
parent 74a8e20623
commit 5c54a4b8ee
2 changed files with 10 additions and 2 deletions

View file

@ -356,7 +356,7 @@ test("wrap(String|Element)", function() {
});
test("append(String|Element|Array<Element>|jQuery)", function() {
expect(14);
expect(16);
var defaultText = 'Try them out:'
var result = $('#first').append('<b>buga</b>');
ok( result.text() == defaultText + 'buga', 'Check if text appending works' );
@ -412,6 +412,11 @@ test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {
$('#select1').append('<OPTION>Test</OPTION>');
ok( $('#select1 option:last').text() == "Test", "Appending &lt;OPTION&gt; (all caps)" );
$('#table').append('<colgroup></colgroup>');
ok( $('#table colgroup').length, "Append colgroup" );
$('#table colgroup').append('<col>');
ok( $('#table colgroup col').length, "Append col" );
});
test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {

View file

@ -1465,7 +1465,7 @@ jQuery.extend({
!s.indexOf("<leg") &&
[1, "<fieldset>", "</fieldset>"] ||
(!s.indexOf("<thead") || !s.indexOf("<tbody") || !s.indexOf("<tfoot")) &&
(!s.indexOf("<thead") || !s.indexOf("<tbody") || !s.indexOf("<tfoot") || !s.indexOf("<colg")) &&
[1, "<table>", "</table>"] ||
!s.indexOf("<tr") &&
@ -1475,6 +1475,9 @@ jQuery.extend({
(!s.indexOf("<td") || !s.indexOf("<th")) &&
[3, "<table><tbody><tr>", "</tr></tbody></table>"] ||
!s.indexOf("<col") &&
[2, "<table><colgroup>", "</colgroup></table>"] ||
[0,"",""];
// Go to html and back, then peel off extra wrappers