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

Side by Side Diff: LayoutTests/editing/deleting/display-table.html

Issue 59963002: Unable to delete the first and the last characters of a contenteditable div with display: table. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Tweaking the testcase Created 7 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #tableDiv {
6 display: table;
7 }
8 </style>
9 <script src="../../resources/js-test.js"></script>
10 </head>
11 <body>
12 <div id="tableDiv" contenteditable="true"></div>
13 <div id="log"></div>
14 <script>
15 function testIt(caretPosition, deleteCommand, expectedString)
leviw_travelin_and_unemployed 2013/11/26 01:39:43 Nit: runTest? Also a description of the test would
arpitab_ 2013/11/26 09:09:09 Done.
16 {
17 var testDiv = document.getElementById('tableDiv');
18 testDiv.innerText = 'ABCD';
19
20 var selection = window.getSelection();
21 selection.collapse(testDiv, caretPosition);
22
23 document.execCommand(deleteCommand);
24 shouldBeEqualToString("document.getElementById('tableDiv').textContent", exp ectedString);
25 }
26
27 testIt(0, "forwardDelete", "BCD");
28 testIt(1, "Delete", "ABC");
29
30 if (window.testRunner)
31 document.getElementById('tableDiv').outerHTML = '';
32
33 finishJSTest();
34 </script>
35 </body>
36 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/deleting/display-table-expected.txt » ('j') | Source/core/editing/htmlediting.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698