Opened 12 years ago
Closed 10 years ago
#9462 closed defect (fixed)
Editor: EnterKeyHandling BR pre-filter doesn't convert all rows to <p>
Reported by: | bill | Owned by: | Jared Jurkiewicz |
---|---|---|---|
Priority: | high | Milestone: | 1.6 |
Component: | Editor | Version: | 1.3.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
If you set an editor's contents to:
abc123<br> abc123<br> abc123<br> abc123<br>
then the pre-filterfor EnterKeyHandling BR mode, on IE (IIUC) should convert the above text to:
<p>abc123</p> <p>abc123</p> <p>abc123</p> <p>abc123</p>
However, it's actually converting it to:
<p>abc345</p> abc345<br/> <p>abc345</p> abc345<br/>
Seems like a bug although not sure what (if any) ramifications there are.
Example in soon-to-be-checked-in EnterKeyHandling.html test.
Change History (5)
comment:1 Changed 12 years ago by
comment:2 Changed 11 years ago by
Milestone: | 1.4 → 1.5 |
---|
comment:3 Changed 11 years ago by
Milestone: | 1.5 → future |
---|---|
Owner: | bill deleted |
comment:4 Changed 11 years ago by
Owner: | set to Jared Jurkiewicz |
---|
comment:5 Changed 10 years ago by
Milestone: | future → 1.6 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
(In [18427]) Initial tests for EnterKeyHandling? plugin in blockNodeForEnter=BR mode on IE.
Includes tests for #9459 and #9462.
Refs #9459, #9460, #9462.