4 <p id=
"description">This tests to see that selected non-editable nodes that are not in both the start and end editable root are preserved during a deletion. You should see two 'Non-editable' pieces on either side of the editable piece below.
<radr://problem/
5026848></p>
5 <div id=
"div" contenteditable=
"true">
6 <table contenteditable=
"false">
9 <td contenteditable=
"true">Editable
<span id=
"start">content
</span></td>
13 Editable
<span id=
"end">content
</span>
16 <script src=
"../../resources/dump-as-markup.js"></script>
18 var sel
= window
.getSelection();
19 var start
= document
.getElementById("start");
20 var end
= document
.getElementById("end");
21 sel
.setBaseAndExtent(start
, 0, end
, 0);
22 document
.execCommand("Delete");
23 Markup
.description(description
.textContent
);