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

Unified Diff: LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-table-element/createTBody.html

Issue 1295773004: update-w3c-deps import using blink c936ac9d274f959a4b5908db6835bcd612fb1a9e: (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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
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>

Powered by Google App Engine
This is Rietveld 408576698