Opened 15 years ago
Closed 14 years ago
#5487 closed Bug (fixed)
Fullpage writer problem with line-break
Reported by: | Garry Yao | Owned by: | Garry Yao |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.4.1 |
Component: | General | Version: | |
Keywords: | Cc: |
Description (last modified by )
Environment
All IE versions.
Reproducing Procedures
- Load the 'Full Page Support' sample page;
- Press 'Enter' key at the end of the first paragraph to create a new empty line;
- Switch to source mode:
- Actual Result:
<html> <head> <title>CKEditor Sample</title> </head> <body> <p> ...</p></body> </html>
- Expected Result: There's a line break before closing </body>
<html> <head> <title>CKEditor Sample</title> </head> <body> <p> ...</p> </body> </html>
Attachments (2)
Change History (9)
comment:1 Changed 15 years ago by
Description: | modified (diff) |
---|
Changed 15 years ago by
Attachment: | 5487.patch added |
---|
comment:2 Changed 15 years ago by
Keywords: | Confirmed Review? added |
---|---|
Milestone: | → CKEditor 3.4 |
Owner: | set to Garry Yao |
Status: | new → assigned |
comment:3 Changed 15 years ago by
Keywords: | Review- added; Review? removed |
---|
Changed 15 years ago by
Attachment: | 5487_2.patch added |
---|
comment:4 Changed 15 years ago by
Keywords: | Review? added; Review- removed |
---|
comment:5 Changed 15 years ago by
Milestone: | CKEditor 3.4 → CKEditor 3.5 |
---|
comment:6 Changed 14 years ago by
Status: | review → review_passed |
---|
comment:7 Changed 14 years ago by
Keywords: | Confirmed removed |
---|---|
Resolution: | → fixed |
Status: | review_passed → closed |
Fixed with [5859].
There is no need to match the space group. It can be simply added to the (?=) lookahead assertion at the end of the regex.