Opened 13 years ago

Closed 10 years ago

#7279 closed Bug (fixed)

Full page mode: <meta> inside body element multiplies elements in body

Reported by: Michał Białas Owned by:
Priority: Normal Milestone:
Component: Core : Parser Version: 3.1
Keywords: Cc: michal.bialas@…

Description

  1. Start with the following code
<html>
	<head>
		<title></title>
	</head>
	<body>
		<table>
			<tr>
				<td>
				d<meta /></td>
			</tr>
		</table>
	</body>
</html>
  1. Paste it in source mode
  1. Switch to wyswig mode

Rezult:

<html>
	<head>
		<title></title>
	</head>
	<body>
		<table>
			<tbody>
				<tr>
					<td>
						d</td>
				</tr>
			</tbody>
		</table>
		<table>
			<tbody>
				<tr>
					<td>
						d</td>
				</tr>
			</tbody>
		</table>
	</body>
</html>
<meta />
<body></body>
<title></title>
<body>
	<table>
		<tbody>
			<tr>
				<td>
					d</td>
			</tr>
		</tbody>
	</table>
	<table>
		<tbody>
			<tr>
				<td>
					d</td>
			</tr>
		</tbody>
	</table>
	<p>
		&nbsp;</p>
</body>

Change History (2)

comment:1 Changed 13 years ago by Krzysztof Studnik

Component: GeneralCore : Parser
Keywords: windows linux chrome ff meta removed
Status: newconfirmed
Version: 3.5.23.1

comment:2 Changed 10 years ago by Jakub Ś

Resolution: fixed
Status: confirmedclosed

This issue is now fixed - tested under CKEditor 4.4.4.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy