yosinch / editing

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

removeFormat: Convert <span style="font-weight: bold">..</span> to <b>..</b> #25

Closed yosinch closed 10 years ago

yosinch commented 10 years ago

Affected tests:

before     <div contenteditable><p style="font-weight: bold">foo^bar|baz</p></div>
expected   <div contenteditable><p><span style="font-weight: bold">foo</span>^bar|<b>baz</b></p></div>
actual     <div contenteditable><p><span style="font-weight: bold">foo</span>^bar|<span style="font-weight: bold">baz</span></p></div>