4 <div contenteditable
id=
"test"><b>place the cursor between these two lines
<br><br>and press return
</b><br>
6 <script src=
"../../resources/dump-as-markup.js"></script>
9 Markup
.description('This test ensures WebKit inserts only a break element when inserting a paragraph at a break element.\n'+
10 'Only one BR should be inserted in this test.');
12 var elem
= document
.getElementById('test');
13 window
.getSelection().collapse(elem
.firstChild
, 2);
14 document
.execCommand("InsertParagraph");
15 Markup
.dump(elem
, "After");