9 <script src=
"../../resources/js-test.js"></script>
12 <div id=
"tableDiv" contenteditable=
"true"></div>
15 function runTest(caretPosition
, deleteCommand
, expectedString
)
17 var testDiv
= document
.getElementById('tableDiv');
18 testDiv
.innerText
= 'ABCD';
20 var selection
= window
.getSelection();
21 selection
.collapse(testDiv
, caretPosition
);
23 document
.execCommand(deleteCommand
);
24 shouldBeEqualToString("document.getElementById('tableDiv').textContent", expectedString
);
27 description("This test verifies that we are able to successfully delete the first and the last characters of a contenteditable div with display: table.");
29 runTest(0, "forwardDelete", "BCD");
30 runTest(1, "Delete", "ABC");
32 if (window
.testRunner
)
33 document
.getElementById('tableDiv').outerHTML
= '';