10 <script src=
"../../resources/dump-as-markup.js"></script>
11 <script src=
"../editing.js"></script>
14 Markup
.waitUntilDone();
16 function editingTest() {
18 Markup
.description('rdar://problem/4065343 Mail: Deleting a line sometimes makes the insertion point jump to the top of the message.');
19 Markup
.dump('root', 'before deletion');
21 for (i
= 0; i
< 5; i
++)
22 moveSelectionForwardByLineCommand();
25 Markup
.dump('root', 'after deletion');
30 <title>Editing Test
</title>
32 <body onload=
"runEditingTest();" contenteditable
id=
"root">hello
<div class=
"editing" id=
"test"><br></div><br></body></html>