Closed
Bug 485629
Opened 16 years ago
Closed 4 years ago
Background color applied to list item, not list text
Categories
(Core :: DOM: Editor, defect, P5)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: annie.sullivan, Unassigned)
References
()
Details
Steps to reproduce:
1. Go to Midas demo: http://www.mozilla.org/editor/midasdemo/
2. Enter the following HTML:
<ul><li>test</li></ul>
3. Highlight the word "test" and change the background color.
Actual result:
Entire line gets different background color because it is applied to the <ul> (or <li> if there are multiple items in the list):
<ul style="background-color: rgb(255, 255, 153);"><li>test</li></ul>
Expected result:
Background color applied only to text:
<ul><li><span style="background-color: rgb(255, 255, 153);">test</span></li></ul>
Comment 1•4 years ago
|
||
Bulk-downgrade of unassigned, >=3 years untouched DOM/Storage bug's priority.
If you have reason to believe this is wrong, please write a comment and ni :jstutte.
Severity: normal → S4
Priority: -- → P5
Comment 2•4 years ago
|
||
I cannot reproduce this using the latest Nightly 85.
Status: NEW → RESOLVED
Closed: 4 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•