Changes between Version 1 and Version 2 of Ticket #12403, comment 5
- Timestamp:
- Sep 12, 2014, 11:33:54 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12403, comment 5
v1 v2 6 6 <p><span style="font-size:36">Hello[]</span></p> 7 7 }}} 8 then, we are executing {{{applyStyle}}} method with {{{font-size}}} set to {{{10}}}. As result should be: 8 then, we are executing {{{applyStyle}}} method with {{{font-size}}} set to {{{10}}}. 9 10 ~~As result should be:~~ 9 11 {{{ 10 12 <p><span style="font-size:10">Hello[]</span></p> 13 }}} 14 As result should be: 15 {{{ 16 <p><span style="font-size:36">Hello</span><span style="font-size:10" >[]</span></p> 11 17 }}} 12 18 Instead of(current behaviour): … … 20 26 <p><span style="font-size:36">He[ll]o</span></p> 21 27 }}} 22 Then {{{applyStyle}}} with {{{font-size:10px}}} 28 Then {{{applyStyle}}} with {{{font-size:10px}}}. 29 30 ~~Result:~~ 31 {{{ 32 <p><span style="font-size:10">He[ll]o</span></p> 33 }}} 23 34 Result: 24 35 {{{ 25 <p><span style="font-size: 10">He[ll]o</span></p>36 <p><span style="font-size:36">He</span><span style="font-size:10">[ll]</span><span style="font-size:36">o</span></p> 26 37 }}} 27 38 ---- … … 31 42 }}} 32 43 Then {{{applyStyle}}} with {{{font-size:10px}}} 33 Result: 44 45 ~~Result:~~ 34 46 {{{ 35 47 <p><span style="font-size:10;background:red;">Hello[]</span></p> 36 48 }}} 49 Result: 50 {{{ 51 <p><span style="font-size:10;background:red;">Hello</span><span style="font-size:36;background:red">[]</span></p> 52 }}}