Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / format-block-multiple-paragraphs-in-pre-expected.txt
blob990f9748df5568a831aa13d51ed3d8745403d428
1 This tests ensures formatBlock removes a pre when formatting multiple paragraphs inside the pre.
3 Formatting all paragraphs by h3 yields:
4 | "
6 | <h3>
7 |   "hello"
8 |   <br>
9 |   "
11 |   "world"
12 |   <br>
13 |   "
15 |   "webkit"
16 | "
19 Undo yields:
20 | "
22 | <pre>
23 |   "<#selection-anchor>hello
25 world
27 webkit<#selection-focus>
29 | "
32 Formatting all but the last paragraph by h3 yields:
33 | "
35 | <pre>
36 |   <h3>
37 |     "<#selection-anchor>hello"
38 |     "
40 |     "world"
41 |     "
43 |   "<#selection-focus>webkit
45 | "
48 Undo yields:
49 | "
51 | <pre>
52 |   "<#selection-anchor>hello
54 world
56 <#selection-focus>webkit
58 | "
61 Formatting all but the first paragraph by h3 yields:
62 | "
64 | <pre>
65 |   "hello
67 |   <h3>
68 |     "
70 |     "world"
71 |     "
73 |     "webkit"
74 |   <#selection-caret>
75 | "