DescriptionHTMLTableSectionElement.insertRow(0) / HTMLTableRowElement.insertCell(0) do not behave correctly
HTMLTableSectionElement.insertRow(0) / HTMLTableRowElement.insertCell(0) do not
behave correctly according to the HTML specification:
http://www.whatwg.org/specs/web-apps/current-work/multipage/tabular-data.html#dom-tbody-insertrow
http://www.whatwg.org/specs/web-apps/current-work/multipage/tabular-data.html#dom-tr-insertcell
Previously, Chromium was adding the new element before the first node, instead
of before the first <tr> (for insertRow) or <td> / <th> (for insertCell)
element.
The new behavior also matches the behavior of Firefox 29.
R=arv@chromium.org, tkent@chromium.org
BUG=369803
TEST=fast/dom/HTMLTableSectionElement/insertRow-skips-non-tr.html
TEST=fast/dom/HTMLTableRowElement/insertCell-skips-non-td-th.html
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=173459
Patch Set 1 #Patch Set 2 : Fix descriptions #
Total comments: 6
Patch Set 3 : Fix nits #
Messages
Total messages: 13 (0 generated)
|