Chromium Code Reviews| 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..271ae2f632fc5713aebd826d14f9b9855c70939c 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."); |
|
tkent
2017/03/16 08:16:22
The test was very inconsistent. The description s
|
| + runTest(0, "forwardDelete", "BCD"); |
| +}, "This test verifies that ForwardDelete command is able to successfully delete the first and the last characters 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 first and the last characters of a contenteditable div with display: table."); |
| </script> |
| </body> |
| </html> |