﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
6049	Page-break marker dissapears in editor when div tag modified.	Burton		"The page-break indicator that shows where the page breaks are inside the editor will not be shown if the div tag is modified with the editor (e.g. change font for the entire page).

To Recreate:

1) Input the folloing source to start.  This will show a page-break indicator in the editor window.
{{{
<p>
	Page 1</p>
<div style=""page-break-after: always"">
	<span style=""display: none"">&nbsp;</span></div>
<p>
	Page 2</p>
}}}

2) Use editor: ""Select All"" and change font to ""Arial"" & size ""8"".

3) Toggle ""Source"" twice and the page-break indicator is gone.

4) Resulting HTML in the editor is below (which the editor doesn't interpret the ""page-break"" div tag correctly).
{{{
<p>
	<span style=""font-size: 8px""><span style=""font-family: arial, helvetica, sans-serif"">Page 1</span></span></p>
<p>
	&nbsp;</p>
<div style=""page-break-after: always"">
	<span style=""font-size: 8px""><span style=""font-family: arial, helvetica, sans-serif""><span style=""display: none"">&nbsp;</span></span></span></div>
<p>
	&nbsp;</p>
<p>
	<span style=""font-size: 8px""><span style=""font-family: arial, helvetica, sans-serif"">Page 2</span></span></p>
}}}

The page-break indicator should be shown even though a font attribute has been introduced to the page-break div tag."	Bug	closed	Normal		General	3.3.1	fixed		burtonrhodes@…
