Changes between Initial Version and Version 1 of Ticket #5487
- Timestamp:
- Apr 8, 2010, 10:57:48 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5487 – Description
initial v1 2 2 All IE versions. 3 3 === Reproducing Procedures === 4 1. Load the 'Full Page Support' sample page, clear all contents then switch to source mode: 4 1. Load the 'Full Page Support' sample page; 5 1. Press 'Enter' key at the end of the first paragraph to create a new empty line; 6 1. Switch to source mode: 5 7 * Actual Result: 6 {{{7 <html>8 <head>9 <title>CKEditor Sample</title>10 </head>11 <body>12 <p>13 ...</p>14 </body>15 </html>16 }}}17 * Expected Result: There's no line break before closing </body>18 8 {{{ 19 9 <html> … … 26 16 </html> 27 17 }}} 18 * Expected Result: There's a line break before closing </body> 19 {{{ 20 <html> 21 <head> 22 <title>CKEditor Sample</title> 23 </head> 24 <body> 25 <p> 26 ...</p> 27 </body> 28 </html> 29 }}}