yosinch / editing

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

createLink: Order of STYLE attribute serialization #43

Closed yosinch closed 10 years ago

yosinch commented 10 years ago

Affected tests: createLink.style.3

before   <div contenteditable>^hello <a href="URL" style="font-weight: bold; font-style: italic;">world</a>|</div>
expected <div contenteditable><a href="URL">^hello <span style="font-weight: bold; font-style: italic">world|</span></a></div>
actual   <div contenteditable><a href="URL">^hello <span style="font-style: italic; font-weight: bold">world|</span></a></div>