7 -khtml-nbsp-mode: space;
8 -khtml-line-break: after-white-space;
12 <title>Editing Test
</title>
14 <body contenteditable
id=
"test" class=
"editing">
15 <div>foo
<blockquote>bar
</blockquote>baz
</div>
17 <script src=
"../../resources/dump-as-markup.js"></script>
19 document
.execCommand("SelectAll");
20 document
.execCommand("Cut");
21 document
.execCommand("Paste");
22 document
.execCommand("Paste");
23 Markup
.description("Buggy code before fix would insert blockquote after body element in second paste");