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

Unified Diff: LayoutTests/fast/dom/HTMLTableRowElement/exceptions-expected.txt

Issue 1221473004: The index argument for HTMLTableRowElement deleteCell() api should not be optional (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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/fast/dom/HTMLTableRowElement/exceptions-expected.txt
diff --git a/LayoutTests/fast/dom/HTMLTableRowElement/exceptions-expected.txt b/LayoutTests/fast/dom/HTMLTableRowElement/exceptions-expected.txt
index 37b4fdafc074f00b91d6080e67342ef906732398..dc479bb3990fb713a9c521cacaf1ba6d1fbd71ff 100644
--- a/LayoutTests/fast/dom/HTMLTableRowElement/exceptions-expected.txt
+++ b/LayoutTests/fast/dom/HTMLTableRowElement/exceptions-expected.txt
@@ -7,6 +7,7 @@ PASS tr.insertCell(-2) threw exception IndexSizeError: Failed to execute 'insert
PASS tr.insertCell(1) threw exception IndexSizeError: Failed to execute 'insertCell' on 'HTMLTableRowElement': The value provided (1) is outside the range [-1, 0]..
PASS tr.deleteCell(-2) threw exception IndexSizeError: Failed to execute 'deleteCell' on 'HTMLTableRowElement': The value provided (-2) is outside the range [0, 1)..
PASS tr.deleteCell(2) threw exception IndexSizeError: Failed to execute 'deleteCell' on 'HTMLTableRowElement': The value provided (2) is outside the range [0, 1)..
+PASS tr.deleteCell() threw exception TypeError: Failed to execute 'deleteCell' on 'HTMLTableRowElement': 1 argument required, but only 0 present..
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698