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/editing/deleting/display-table.html

Issue 2757553002: Editing: Content of display:table elements should be editable. (Closed)
Patch Set: Remove parenthesis Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/EditingUtilities.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/editing/deleting/display-table.html
diff --git a/third_party/WebKit/LayoutTests/editing/deleting/display-table.html b/third_party/WebKit/LayoutTests/editing/deleting/display-table.html
index 3b0387795afea59d17a450587fdeda8c006b886a..b8454378a18e82e6101d70da713eef23b8b89183 100644
--- a/third_party/WebKit/LayoutTests/editing/deleting/display-table.html
+++ b/third_party/WebKit/LayoutTests/editing/deleting/display-table.html
@@ -26,9 +26,12 @@ function runTest(caretPosition, deleteCommand, expectedString)
}
test(function () {
- runTest(0, "forwardDelete", "ABCD");
- runTest(1, "Delete", "ABCD");
-}, "This test verifies that we are able to successfully delete the first and the last characters of a contenteditable div with display: table.");
+ runTest(0, "forwardDelete", "BCD");
+}, "This test verifies that ForwardDelete command is able to successfully delete the first character of a contenteditable div with display: table.");
+
+test(function () {
+ runTest(1, "Delete", "ABC");
+}, "This test verifies that Delete command is able to successfully delete the last character of a contenteditable div with display: table.");
</script>
</body>
</html>
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/EditingUtilities.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698