Opened 16 years ago
Last modified 16 years ago
#3664 closed Bug
Insert table in empty document add extra line — at Version 1
Reported by: | Garry Yao | Owned by: | Garry Yao |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.1 |
Component: | Core : Styles | Version: | |
Keywords: | Confirmed HasTest Review+ | Cc: |
Description (last modified by )
Reproducing Procedures
- Open the replace by class example page in FF;
- Click on 'New Page' to empty the document;
- Insert a default table;
- Expected Result:
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> ... </table> <p> <br /> </p>
- Actual Result: There's an paragraph established before the table:
<p> <br /> </p> <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> ... </table> <p> <br /> </p>
- Expected Result:
Change History (2)
Changed 16 years ago by
Attachment: | 3664.patch added |
---|
comment:1 Changed 16 years ago by
Description: | modified (diff) |
---|
Not sure if we need to trim the last paragraph, so keep it in the expected result.