Changes between Initial Version and Version 1 of Ticket #3051
- Timestamp:
- Mar 19, 2009, 7:23:58 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3051
-
Property
Summary
changed from
RangeIterator not correct with enforcing real blocks
toDomiterator incorrect with enforceRealBlock
-
Property
Summary
changed from
-
Ticket #3051 – Description
initial v1 1 When domiterator establish new block for one of the pseudo blocks, others should be left untouched, which is currently not respected. 1 2 === Procedures === 2 3 1. Open the ''replace by code'' example page; 3 4 1. Make the following content with selection: 4 5 {{{ 5 ^ 6 text 7 <p> 8 paragraph</p> 9 text 10 ^ 6 <div> 7 first 8 <p>paragraph</p>se^cond</div> 11 9 }}} 12 10 1. Click on ''Increase Indent'' command. 13 * Actual Result : The middle paragraph is not indented. 11 * Actual Result : A new paragraph is establish for text node 'first' and is indented also. 12 {{{ 13 <div> 14 <p style="margin-left: 40px;"> 15 first</p> 16 <p> 17 paragraph</p> 18 <p style="margin-left: 40px;"> 19 second</p> 20 </div> 21 }}} 22 * Expected Result : The pseudo block contains text 'first' should be left untouched while the 'second' chunk should be indented. 23 {{{ 24 <div> 25 first 26 <p> 27 paragraph</p> 28 <p style="margin-left: 40px;"> 29 second</p> 30 </div> 31 }}}