| <html> |
| <head> |
| <script> |
| function print(message) |
| { |
| var paragraph = document.createElement("li"); |
| paragraph.appendChild(document.createTextNode(message)); |
| document.getElementById("console").appendChild(paragraph); |
| } |
| function isInCollection(collection, item) { |
| for(var i = 0; i < collection.length; i++) |
| if(collection[i] == item) |
| return true; |
| |
| return false; |
| } |
| function insert(table) { |
| try { |
| var insertedRow = table.insertRow(-1); |
| var error; |
| // Check that the insertedRow is in the table and that the table now has at least one tBody |
| if(!isInCollection(table.rows, insertedRow)) { |
| print("Failed: Inserted row not found inside table"); return; |
| } |
| if(table.tBodies.length == 0 && !table.tFoot && !table.tHead) { |
| print("Failed: Inserted row did not add an implicit tbody/tfoot/thead"); return; |
| } |
| |
| print("Success"); |
| } |
| catch(e) { |
| print("Failed: " + e); |
| |
| } |
| } |
| function test() |
| { |
| if (window.testRunner) |
| testRunner.dumpAsText(); |
| |
| var tables = document.getElementsByTagName("table"); |
| for(var i = 0; tables[i]; i++) |
| insert(tables[i]); |
| |
| } |
| |
| </script> |
| <style> |
| table { |
| display: none; |
| } |
| </style> |
| </head> |
| <body onload="test();"> |
| <h3>HTMLTableElement's insertRow() method</h3> |
| <h4>The first three test whether HTMLTableElement's insertRow() method can add an implicit tbody into a table without one, to hold the inserted row.</h4> |
| <p>The first tests an empty table</p> |
| <p>The second tests a table with text contents.</p> |
| <p>The third tests a table with only a form element inside.</p> |
| <h4>The next four test the method on typical cases.</h4> |
| <p>The first tests a table with only a thead</p> |
| <p>The second tests a table with only a tbody</p> |
| <p>The third tests a table with only a tfoot</p> |
| <p>The fourth tests a table with a few rows and cells</p> |
| <table></table> |
| <table> </table> |
| <table><form></form></table> |
| <table><thead></thead></table> |
| <table><tbody></tbody></table> |
| <table><tfoot></tfoot></table> |
| <table id="table7" width="100%" border="0" cellpadding="2" cellspacing="0" bgcolor="#cccccc" style="border-top: 1px #999999 solid; border-bottom: 5px #000000 solid"> |
| <tr> |
| <td valign="middle" nowrap style="border-bottom: 2px #999999 solid" width="100%"><font face="arial, sans-serif" size="-2"><a href="http://www.ostg.com" title="OSTG - The Open Source Technology Group" style="text-decoration:none"><font face="verdana" color="#001670"> <b>OSTG</b></font></a> | <a href="http://sf.net" style="text-decoration: none">SourceForge</a> - <a href="http://thinkgeek.com" style="text-decoration: none">ThinkGeek</a> - <a href="http://slashdot.org/relocate.pl?id=12076d9d1d102290bbd8d6c328d9352d" style="text-decoration: none">ITMJ</a> - <a href="http://linux.com" style="text-decoration: none">Linux.com</a> - <a href="http://newsforge.com" style="text-decoration: none">NewsForge</a> - <a href="http://freshmeat.net" style="text-decoration: none">freshmeat</a> - <a href="http://newsletters.ostg.com" style="text-decoration: none">Newsletters</a> - <a href="http://slashdot.org/relocate.pl?id=0bd85aa57f4ab88f2d01c33b548b693c" style="text-decoration: none">Jobs</a> - <a href="http://slashdot.org/relocate.pl?id=776713765547209fc2c05a83454efda2" style="text-decoration: none">Broadband</a> - <a href="http://slashdot.org/relocate.pl?id=237ae3c6bbb4992f4144befc67856103" style="text-decoration: none">Whitepapers</a></font></td><td valign="middle" style="display:hidden; border-bottom: 2px solid #999999" nowrap><b><A HREF="//slashdot.org/users.pl?op=savemiscopts&opt_osdn_navbar=0" style="text-decoration: none;"><font size="-2" face="verdana" color="#666666"> X </font></a></b> |
| </td> |
| </tr> |
| </table> |
| |
| <hr> |
| <ol id="console"></ol> |
| </body> |
| </html> |