3 testRunner
.dumpEditingCallbacks();
5 <p>This is a testcase for
8193, hitting an assert inside RemoveNodeCommand on Undo Paste. Both editable regions below should look the same after the test.
</p>
7 <div style=
"border: 1px solid black;" id=
"copy" contenteditable=
"true">
8 <div>foo
</div><div>bar
</div></div>
9 <div style=
"border: 1px solid black;" id=
"paste" contenteditable=
"true"><br></div>
12 var c
= document
.getElementById("copy");
13 var p
= document
.getElementById("paste");
14 var s
= window
.getSelection();
16 document
.execCommand("SelectAll");
17 document
.execCommand("Copy");
19 document
.execCommand("Paste");
20 document
.execCommand("Undo");