3 testRunner
.dumpEditingCallbacks();
5 <p>This tests pasting a fragment containing an
<iframe
> after a
<div
>. This used to fail on an assertion in moveParagraphContentsToNewBlockIfNecessary. You should see 'foo' and then an
<iframe
> below.
</p>
6 <div contenteditable=
"true" id=
"test"></div>
9 var s
= window
.getSelection();
10 var e
= document
.getElementById("test");
13 document
.execCommand("InsertHTML", false, "<div>foo</div><iframe style='border:1px solid black; width:100; height:50;'></iframe>");