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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-tr-element/deleteCell.html

Issue 1407103007: update-w3c-deps import using blink 770eaea66cc4cfbb14ced3dc8dc5434716ed540a: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated -expected files for 3 new FAILs Created 5 years, 2 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: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-tr-element/deleteCell.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-tr-element/deleteCell.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-tr-element/deleteCell.html
index d9efafaaf5319296e495926afb807ef73b220106..93246ded643ac3ae1ec48e33100cc5ba2b7ef1ef 100644
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-tr-element/deleteCell.html
+++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/tabular-data/the-tr-element/deleteCell.html
@@ -43,4 +43,12 @@ test(function () {
});
}, "HTMLTableRowElement deleteCell(cells.length)");
+test(function () {
+ assert_equals(tr.cells.length, 1);
+ tr.deleteCell(-1);
+ assert_equals(tr.cells.length, 0);
+ tr.deleteCell(-1);
+ assert_equals(tr.cells.length, 0);
+}, "HTMLTableRowElement deleteCell(-1) with no cells");
+
</script>

Powered by Google App Engine
This is Rietveld 408576698