Changes between Initial Version and Version 1 of Ticket #12047
- Timestamp:
- Jun 2, 2014, 6:45:15 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12047
- Property Keywords Line Height Span tag line break removed
-
Ticket #12047 – Description
initial v1 1 1. Type "abcdef" in the CK Editor and set the font size to 72. 2 2. The "abcdef" and paste it in next line. 3 Now in the source will be "<p><span style="font-size:72px">asdsadsadasd</span></p>" 4 3. Now select only "abc" change the font size to 8. 5 At this time source will be 1 1. Set the font size to 72 and yype "abcdef" in the CKEditor 2 2. Press Enter 3 3. Now the source in CKE will be 4 {{{ 5 <p><span style="font-size:72px">asdsadsadasd</span></p> 6 }}} 7 3. Select only "abc" change the font size to 8. This time source will be: 6 8 {{{ 7 9 <p><span style="font-size:72px"><span style="font-size:8px">abc</span>def</span></p> 8 10 }}} 9 11 10 4. Now, select "def" and change the font size also to 8 11 At this time source will be 12 4. Now, select "def" and change the font size also to 8. This time source will be: 12 13 {{{ 13 14 <p><span style="font-size:72px"><span style="font-size:8px">abcdef</span></span></p> 14 15 }}} 15 16 16 17 17 18 Expected: span18 **Expected:** 19 19 {{{ 20 20 <span style="font-size:72px"> 21 21 }}} 22 tag shuld be deleted in step 4.22 span tag shuld be deleted in step 4. 23 23 24 24 Due this the line hieght is set to 72 px. This should be fixed.