﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5294	Handling textareas within CKeditor	QQQ		"<textareas> are being handled like normal HTML tags, when they should be getting the same treatment as <pre> tags. 

I've done a quick look and from what I see, the offending file would be fragment.js:
-Line 152:
Original: ""&& element.name != 'pre'""
Possible replacement: "" && element.name != 'pre' && element.name != 'textarea'""

-Line 191:
Original: ""else if ( tagName == 'pre' )""
Possible replacement: ""else if ( tagName == 'pre' || tagName == 'textarea' )""

-Line 332:
Original: ""if ( currentNode.name == 'pre' )""
Possible replacement: ""if ( currentNode.name == 'pre' || currentNode.name == 'textarea' )""



That should theoretically fix it. I haven't worked much with it, so this is all untested, but it'd be nice if someone who has more of an idea how to work this could make a proper patch."	New Feature	confirmed	Normal		Core : Output Data	3.0			
