3 https://bugzilla.mozilla.org/show_bug.cgi?id=858918
5 <title>Test for Bug
858918</title>
6 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
7 <script src=
"/tests/SimpleTest/EventUtils.js"></script>
8 <link rel=
"stylesheet" href=
"/tests/SimpleTest/test.css"/>
9 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=858918">Mozilla Bug
858918</a>
10 <span contenteditable
style=
"display:block;min-height:1em"></span>
12 var span
= document
.querySelector("span");
13 getSelection().collapse(span
, 0);
14 document
.execCommand("inserthtml", false, "<div>doesn't go in span</div>");
15 is(span
.innerHTML
, "<div>doesn't go in span</div>");