﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5035	openTag method doesn't use the attributes arg	Alfonso Martínez de Lizarrondo		"In both basicWriter and htmlWriter the openTag method doesn't use the attributes parameter:

{{{
		openTag : function( tagName, attributes )
		{
			this._.output.push( '<', tagName );
		},
}}}
and
{{{
		openTag : function( tagName, attributes )
		{
			var rules = this._.rules[ tagName ];

			if ( this._.indent )
				this.indentation();
			// Do not break if indenting.
			else if ( rules && rules.breakBeforeOpen )
			{
				this.lineBreak();
				this.indentation();
			}

			this._.output.push( '<', tagName );
		},
}}}

Am I missing something here?[[BR]]

In the calls to the method the attributes are sent, but that could be removed as well as the examples about how to use it."	Task	closed	Normal		Core : Output Data	SVN (CKEditor) - OLD	wontfix	Discussion	
