Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Unified Diff: LayoutTests/fast/dom/HTMLTableRowElement/insertCell-skips-non-td-th.html

Issue 262163008: HTMLTableSectionElement.insertRow(0) / HTMLTableRowElement.insertCell(0) do not behave correctly (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix nits Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLTableRowElement/insertCell-skips-non-td-th-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/HTMLTableRowElement/insertCell-skips-non-td-th.html
diff --git a/LayoutTests/fast/dom/HTMLTableRowElement/insertCell-skips-non-td-th.html b/LayoutTests/fast/dom/HTMLTableRowElement/insertCell-skips-non-td-th.html
new file mode 100644
index 0000000000000000000000000000000000000000..e8a61822ad766d56b021edf92bbf88ae918956a8
--- /dev/null
+++ b/LayoutTests/fast/dom/HTMLTableRowElement/insertCell-skips-non-td-th.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html>
+<head>
+<link rel="help" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/tabular-data.html#dom-tr-insertcell">
+<script src="../../../resources/js-test.js"></script>
+</head>
+<body>
+<script>
+description("Tests that HTMLTableRowElement.insertCell() skips non &lt;td&gt; / &lt;th&gt; children.");
+
+var tr = document.createElement("tr");
+shouldBe("tr.__proto__", "HTMLTableRowElement.prototype");
+
+tr.appendChild(new Text("TEXT"));
+tr.appendChild(document.createElement("a"));
+tr.insertCell(-1).innerHTML = "1";
+// The insertCell() method must create a td element, insert it as a child of the
+// tr element, immediately before the indexth td or th element in the cells
+// collection, and finally must return the newly created td element.
+tr.insertCell(0).innerHTML = "0";
+
+var childNodes = tr.childNodes;
+shouldBe("childNodes.length", "4");
+shouldBeEqualToString("childNodes[0].nodeValue", "TEXT");
+shouldBeEqualToString("childNodes[1].tagName", "A");
+shouldBeEqualToString("childNodes[2].innerHTML", "0");
+shouldBeEqualToString("childNodes[3].innerHTML", "1");
+</script>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLTableRowElement/insertCell-skips-non-td-th-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698