Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/tabular-data/the-table-element/insertRow-method-02.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>insertRow(): Empty table</title>
<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<div id="test">
<table></table>
</div>
<script>
test(function() {
var table = document.getElementById("test").getElementsByTagName("table")[0];
test(function() {
assert_equals(table.childNodes.length, 0);
assert_equals(table.rows.length, 0);
}, "table should start out empty")
var tr;
test(function() {
tr = table.insertRow(0);
assert_equals(tr.localName, "tr");
assert_equals(tr.namespaceURI, HTML);
}, "insertRow should insert a tr element")
var tbody = tr.parentNode;
test(function() {
assert_equals(tbody.localName, "tbody");
assert_equals(tbody.namespaceURI, HTML);
assert_equals(tbody.parentNode, table);
}, "insertRow should insert a tbody element")
});
</script>