Home | History | Annotate | Download | only in parse-only

Lines Matching refs:TABLE

514 	domManip: function( args, table, callback ) {
532 return table && jQuery.nodeName(elem, "table") && jQuery.nodeName(cur, "tr") ?
892 [ 1, "<table>", "</table>" ] ||
895 [ 2, "<table><tbody>", "</tbody></table>" ] ||
899 [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ] ||
902 [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ] ||
917 // Remove IE's autoinserted <tbody> from table fragments
920 // String was a <table>, *may* have spurious <tbody>
922 tbody = !tags.indexOf("<table") && !hasBody ?
926 wrap[1] == "<table>" && !hasBody ?
3122 div.innerHTML = ' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';
4224 var body = document.body, container = document.createElement('div'), innerDiv, checkDiv, table, td, rules, prop, bodyMarginTop = body.style.marginTop,
4225 html = '<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';
6310 table: [1, '<table>', '</table>'],
6312 tbody: [2, '<table><tbody>', '</tbody></table>'],
6313 tr: [3, '<table><tbody><tr>', '</tr></tbody></table>']
10821 // IE and Opera are missing .innerHTML support for TABLE-related and SELECT elements
10902 TABLE: ['<table>', '</table>', 1],
10903 TBODY: ['<table><tbody>', '</tbody></table>', 2],
10904 TR: ['<table><tbody><tr>', '</tr></tbody></table>', 3],
10905 TD: ['<table><tbody><tr><td>', '</td></tr></tbody></table>', 4],