Closed
Bug 22072
Opened 25 years ago
Closed 25 years ago
Loading user style sheet should not use "override" mode
Categories
(Core :: DOM: Editor, defect, P3)
Tracking
()
VERIFIED
FIXED
M13
People
(Reporter: cmanske, Assigned: cmanske)
References
Details
There is an error in nsHTMLEditor::ApplyStyleSheet(). The method currently is:
return ApplyDocumentOrOverrideStyleSheet(aURL, PR_TRUE);
when it should be:
return ApplyDocumentOrOverrideStyleSheet(aURL, PR_FALSE);
The second parameter should only be true when the style sheet is a "override"
type, not a "document" type as is needed when loading a user's style sheet.
Assignee | ||
Updated•25 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M13
Assignee | ||
Updated•25 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 1•25 years ago
|
||
Checked in 12/22
Assignee | ||
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Assignee | ||
Comment 2•25 years ago
|
||
This is impossible to verify by QA -- just a small code change, so I'll verify
it.
You need to log in
before you can comment on or make changes to this bug.
Description
•