4 <p id=
"description">This tests the deletion of non-editable content that both starts and ends in editable roots - it should successfully be removed. There should be no visible content in the markup below.
<radr://problem/
5026848></p>
5 <div id=
"div" contenteditable=
"true">foo
<span style=
"color: red;" contenteditable=
"false">bar
</span> baz
</div>
7 <script src=
"../../resources/dump-as-markup.js"></script>
9 var div
= document
.getElementById("div");
11 document
.execCommand("SelectAll");
12 document
.execCommand("Delete");
13 Markup
.description(description
.textContent
);