﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
14615	protected source in attributes modified in custom html elements	Hubert Garrido		"With angular, it is a common practice to define new HTML elements, and it is also needed to protect angular code, but CKEditor change attributes if they are in a custom tag and protected with protectedSource

This bug is related to a previous one that changed attributes in regular HTML tags:
https://dev.ckeditor.com/ticket/4475

== Steps to reproduce ==

1. protect angular code with the following in config:
protectedSource: [ /{{[\s\S]*?}}/g ]

2. put the following in source:
<custom-directive data=""{{ item }}"">test</custom-directive>
<div data=""{{ item }}"">test</div>

== Expected result ==
<custom-directive data=""{{ item }}"">test</custom-directive>
<div data=""{{ item }}"">test</div>

== Actual result ==
<custom-directive data=""&lt;!--{cke_protected}%7B%7B%20item%20%7D%7D--&gt;"">test</custom-directive>
<div data=""{{ item }}"">test</div>"	Bug	confirmed	Normal		General	4.4.1			
