﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8834	Use HTML paste bin for Paste as Plain Text	Frederico Caldeira Knabben		"We're currently using a <textarea> to catch pasted data for the Paste as Plain Text feature. This makes our life easier, because the ""some format"" to text conversion is done by the source application and the browser.

The problem is that we're having lost of data in that operation. I'm attaching a document, which shows an example of this problem.

If we paste that document into a contenteditable element, we have the following HTML available:

{{{
<p class=""MsoNormal"">Line 1<br>
Line 2</p>
<p class=""MsoNormal"">Line 3</p>
<p class=""MsoNormal"">Line 4</p>
}}}

If we do so in a <textearea>, we have this instead:

{{{
Line 1
Line 2
Line 3
Line 4
}}}

As we can see, it is impossible to understand that we have different line-breaks in the document, as well as to precisely enclose paragraphs.

Ideally, we should use a contenteditable element as the paste bin, extracting plain text out of it by ourselves, keeping structural elements that are interesting for us."	New Feature	closed	Normal		Core : Pasting	3.0	fixed		satya_minnekanti@…
