RESOLVED DUPLICATE of bug 12248 18423
InsertHtml command is adding <span class="Apple-style-span"> tags by itself
https://bugs.webkit.org/show_bug.cgi?id=18423
Summary InsertHtml command is adding <span class="Apple-style-span"> tags by itself
Martin Kou
Reported 2008-04-10 23:33:55 PDT
Steps to reproduce the bug: 1. Create an editable document with some contents wrapped in an <h3> tag. 2. Put the caret inside the <h3> tag. 3. Try to run document.execCommand('inserthtml', false, $some_html) to insert some simple text into the current caret position. 4. Notice the inserted text looks different to the rest of the <h3> tag. 5. Print the HTML contents of the editable document to find some extra <span> tags have been inserted unintentionally by the InsertHtml command.
Attachments
Test case with an editable iframe prepared. (919 bytes, text/html)
2008-04-10 23:35 PDT, Martin Kou
no flags
Martin Kou
Comment 1 2008-04-10 23:35:07 PDT
Created attachment 20471 [details] Test case with an editable iframe prepared.
Martin Kou
Comment 2 2008-04-10 23:35:51 PDT
This bug is causing the bug https://dev.fckeditor.net/ticket/2113 in FCKeditor.
Mark Rowe (bdash)
Comment 3 2008-04-11 16:54:55 PDT
This is probably the same as bug 12248.
Martin Kou
Comment 4 2008-04-15 02:17:52 PDT
I've found that in addition to adding unnecessary <span> tags, the bug is also manipulating the DOM structure of the editable document in unexpected ways. For example, if I had this HTML inside the editable frame: <h3 style="color:red;">Hello <span id="abc" style="color:green;">Wor</span>ld!</h3> .. and inside the green text "Wor", insert the "<" symbol, then we'll have: <h3 style="color:red;">Hello <span id="abc" style="color:green;">W<span class="Apple-style-span" style="color: rgb(0, 0, 0); font-size: 16px; font-weight: normal; ">&lt;<span class="Apple-style-span" style="color: rgb(255, 0, 0); font-size: 19px; font-weight: bold; "><span id="abc" style="color:green;">or</span>ld!</span></span></span></h3> Notice that now we have two <span> tags with the id "abc". This is clearly wrong.
David Kilzer (:ddkilzer)
Comment 5 2008-04-17 13:16:56 PDT
*** This bug has been marked as a duplicate of 12248 ***
Note You need to log in before you can comment on or make changes to this bug.