Actions
Bug #81210
closedParagraphs combine when setting block format in Chrome
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
RTE (rtehtmlarea + ckeditor)
Target version:
-
Start date:
2017-05-12
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When setting block format for multiple paragraphs to h1-h6 it combines the paragraphs. This only happens in Chrome.
You can recreate this using Chrome with the following steps:
- Create new text content element
- In the RTE type: Line 1[enter]Line 2[enter]Line3
- The HTML is now:
<p>Line 1</p><p>Line 2</p><p>Line3</p>
- Select all text
- Make it a header (for example h2)
- The HTML is now:
<h2>Line 1<br />Line 2<br />Line 3</h2>
In Firefox and IE11 the HTML at the end is: <h2>Line 1</h2><h2>Line 2</h2><h2>Line 3</h2>
Actions