yosinch / editing

document.execCommand in JavaScript for Blink
4 stars 6 forks source link

removeFormat: Remove SPAN with unsupported style completely. #26

Open yosinch opened 10 years ago

yosinch commented 10 years ago

Affected tests:

before     <div contenteditable><p style="text-indent: 2em">foo^bar|baz</p></div>
expected   <div contenteditable><p>foo^bar|baz</p></div>
actual     <div contenteditable><p><span style="text-indent: 2em">foo</span>^bar|<span style="text-indent: 2em">baz</span></p></div>