﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
13148	Pate from Word empty list issue	Karen Ananiev		"If there is empty list in pasted from Word data CKEditor will show an alert ""It was not possible to clean up the pasted data due to an internal error"".

The simplest way to reproduce it is edit '''/plugins/pastefromword/filter/default.js''' file. Find the following code:
{{{
try {
	data = dataProcessor.toHtml( data );
} catch ( e ) {
	alert( editor.lang.pastefromword.error );
}
}}}

and override the data var above it:

{{{
data = '<div>Test paste empty list from Word <ul><li></li></ul></div>';

try {
	data = dataProcessor.toHtml( data );
} catch ( e ) {
	alert( editor.lang.pastefromword.error );
}
}}}

Open editor, click Paste from Word button type anything and click OK.
"	Bug	confirmed	Normal		Plugin : Paste from Word	3.0			
