12 <title>Editing Test
</title>
14 <body contenteditable
onload=
"runTest()">
15 <div id=
"test"><div>one
<br>two
</div></div>
17 <script src="../../resources/dump-as-markup.js
"></script>
20 Markup.description('This test that the deletion of the last row of an unstyled DIV leaves a BR element and that the selection is where the BR element is.');
21 var element = document.getElementById("test
").firstElementChild;
22 getSelection().setBaseAndExtent(element, 2, element, 3);
23 document.execCommand('delete');