Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / display-block-on-spans-expected.txt
1 This is a test case for the fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=7904.
2 ReplaceSelectionCommand used to guess whether or not nodes in the fragment to be pasted were blocks. It now knows for sure.
3 Before the fix, ReplaceSelectionCommand blew away content of the div below after copy/pasting it over itself.
4 The following two results must be visually identical except for the caret.
5
6 before:
7 | "
8 "
9 | <span>
10 |   style="display:block"
11 |   <b>
12 |     "<#selection-caret>This is a paragraph."
13 | "
14 "
15 | <span>
16 |   style="display:block"
17 |   <b>
18 |     "This is another paragraph."
19 | "
20 "
21
22 after:
23 | "
24 "
25 | <span>
26 |   style="display: block; "
27 |   <b>
28 |     "This is a paragraph."
29 | <span>
30 |   style="display:block"
31 |   <b>
32 |     "This<#selection-caret>"
33 |   <b>
34 |     " is another paragraph."
35 |   <br>
36 | "
37 "