blob: da85e01b8bade9e9ce937dc0d07b30e7f344a483 [file]
This tests ensures formatBlock removes a pre when formatting multiple paragraphs inside the pre.
Formatting all paragraphs by h3 yields:
| "\n"
| <h3>
| "<#selection-anchor>hello"
| <br>
| "\n"
| "world"
| <br>
| "\n"
| "webkit<#selection-focus>"
| "\n"
Undo yields:
| <#selection-anchor>
| "\n"
| <pre>
| "hello\n\nworld\n\nwebkit\n"
| "\n"
| <#selection-focus>
Formatting all but the last paragraph by h3 yields:
| "\n"
| <pre>
| <h3>
| "<#selection-anchor>hello"
| "\n"
| "world"
| "\n"
| "<#selection-focus>webkit\n"
| "\n"
Undo yields:
| "\n"
| <pre>
| "<#selection-anchor>hello\n\nworld\n\n<#selection-focus>webkit\n"
| "\n"
Formatting all but the first paragraph by h3 yields:
| "\n"
| <pre>
| "hello\n"
| <h3>
| "<#selection-anchor>\n"
| "world"
| "\n"
| "webkit<#selection-focus>"
| "\n"