Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / inserting / insert-3907422-fix.html
blob943690c4f20d5013ae75b240c94b8f190c88f735
1 <html>
2 <head>
4 <style>
5 .editing {
6 word-wrap: break-word;
7 -khtml-nbsp-mode: space;
8 -khtml-line-break: after-white-space;
10 </style>
12 <title>Editing Test</title>
13 </head>
14 <body contenteditable id="test" class="editing">
15 <div>foo<blockquote>bar</blockquote>baz</div>
17 <script src="../../resources/dump-as-markup.js"></script>
18 <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");
24 Markup.dump();
25 </script>
27 </body>
28 </html>