-
Bug
-
Resolution: Fixed
-
Low
-
5.9.4, 6.8.0, 6.12.2, 6.15.6
-
6
-
Severity 3 - Minor
-
3
-
Summary
Confluence editor adds multiple <span> tags in the HTML code, when entries in a list are copied and pasted.
With each copy and paste operation the count of the span tags is doubled. This only happens in Firefox
Environment
- Firefox
Steps to Reproduce
- Create a page. Enter the following:
- Check the storage format. It would look something such as follows:
<ul> <li> <span style="color: rgb(255,0,0);">one </span> </li> <li> <span style="color: rgb(255,0,0);">Two</span> </li> </ul>
- Copy the line "Two" and create a new line such as follow:
Expected Results
- Check the storage format. It would look something such as follows:
<ul> <li> <span style="color: rgb(255,0,0);">one </span> </li> <li> <span style="color: rgb(255,0,0);">Two</span> </li> <li> <span style="color: rgb(255,0,0);">Two</span> </li> </ul>
Actual Results
- Check the storage format. It look something such as follows:
<ul> <li> <span style="color: rgb(255,0,0);">one </span> </li> <li> <span style="color: rgb(255,0,0);">Two</span> </li> <li> <span style="color: rgb(255,0,0);"> <span style="color: rgb(255,0,0);">Two</span> </span> </li> </ul>
notice the <span style="color: rgb(255,0,0);"> is doubled
Notes
Happens in Firefox
- relates to
-
CONFSERVER-54754 Page with excessive nested span tags causes Synchrony to stop working
- Closed
- mentioned in
-
Page Loading...