We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When an element with children is passed to the Schema#removeDisallowedAttributes it may happen that some elements won't be cleared.
Schema#removeDisallowedAttributes
<parent> <$text foo="a">a</$text><$text foo="b">b</$text><$text foo="c">c</$text> </parent>
When all attributes are disallowed in text for the parent element, then the last one won't be cleared.
parent
<parent> ab<$text foo="c">c</$text> </parent>
While removing attributes nodes are merged and this affects iterator.
The text was updated successfully, but these errors were encountered:
Merge pull request #1790 from ckeditor/t/1789
c5033b6
Fix: Improved filtering out disallowed attributes on child elements. #1789.
Closed with ckeditor/ckeditor5-engine#1790.
Sorry, something went wrong.
oskarwrobel
No branches or pull requests
When an element with children is passed to the
Schema#removeDisallowedAttributes
it may happen that some elements won't be cleared.When all attributes are disallowed in text for the
parent
element, then the last one won't be cleared.While removing attributes nodes are merged and this affects iterator.
The text was updated successfully, but these errors were encountered: