Bug #81210
Updated by Josef Glatz over 7 years ago
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 <p>Line 1</p><p>Line 2</p><p>Line3</p>@ 2</p><p>Line3</p> * Select all text * Make it a header (for example h2) * The HTML is now: @<h2>Line <h2>Line 1<br />Line 2<br />Line 3</h2>@ 3</h2> In Firefox and IE11 the HTML at the end is: @<h2>Line <h2>Line 1</h2><h2>Line 2</h2><h2>Line 3</h2>@ 3</h2>