| Index: LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-table-element/createTBody.html
|
| diff --git a/LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-table-element/createTBody.html b/LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-table-element/createTBody.html
|
| index 4f9616f50cc71c74cb4fb55f8f1e21a813f97317..12632f0e1fefad9446f14d715ed36c2d0bc34ed9 100644
|
| --- a/LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-table-element/createTBody.html
|
| +++ b/LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-table-element/createTBody.html
|
| @@ -162,4 +162,12 @@ test(function() {
|
| assert_array_equals(table.childNodes, [before, tbody, after1]);
|
| assert_tbody(tbody);
|
| }, "A tbody node inside a tfoot child node after a tbody child node");
|
| +
|
| +test(function() {
|
| + var table = document.createElementNS(htmlNS, "foo:table");
|
| + var tbody = table.createTBody();
|
| +
|
| + assert_equals(tbody.prefix, null);
|
| +}, "A prefixed table creates tbody without prefix");
|
| +
|
| </script>
|
|
|