Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / inserting / insert-3907422-fix-expected.txt
blobc7ed7def8d58717ce367aac129ece336cc57b0de
1 Buggy code before fix would insert blockquote after body element in second paste
2 | <html>
3 |   <head>
4 |     "
7 |     <style>
8 |       "
9 .editing { 
10     word-wrap: break-word; 
11     -khtml-nbsp-mode: space; 
12     -khtml-line-break: after-white-space;
15 |     "
18 |     <title>
19 |       "Editing Test"
20 |     " 
22 |   " 
24 |   <body>
25 |     class="editing"
26 |     contenteditable=""
27 |     id="test"
28 |     "
30 |     <div>
31 |       "foo"
32 |       <blockquote>
33 |         "bar"
34 |       "bazfoo"
35 |     <blockquote>
36 |       "bar"
37 |     "baz<#selection-caret>"
38 |     "
41 |     <script>
42 |       src="../../resources/dump-as-markup.js"
43 |     "
45 |     <script>
46 |       "
47     document.execCommand("SelectAll");
48     document.execCommand("Cut");
49     document.execCommand("Paste");
50     document.execCommand("Paste");
51     Markup.description("Buggy code before fix would insert blockquote after body element in second paste");
52     Markup.dump();