Opened 14 years ago
Closed 14 years ago
#6405 closed Bug (fixed)
Font changing, for typed text does not work as expected
Reported by: | Krzysztof Studnik | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.4.1 |
Keywords: | Cc: |
Description
Investigation of #6403
- enter some text
- change font -> font is changed for entire line
- type new text
- change font to another
- type next text.
Expected result :
<p> Test <span style="font-family: comic sans ms, cursive"> test </span> <span style="font-family: georgia, serif"> test </span> <span style="font-family: times new roman, times, serif"> test </span> </p>
Actual: Under IE
<p> test<span style="font-family: comic sans ms, cursive"> test<span style="font-family: georgia, serif"> test<span style="font-family: times new roman, times, serif"> test </span></span></span> </p>
Webkit: Under Chrome and Safari, font is set only once for all previously typed text in paragraph
<p> Testtesttesttest</p>
Opera as in #6403
Issue with Webkit was fixed. "Actual Result" is the valid one not the "Expected".
To achieve the 'Expected Result" you simply have to E.g.
This ticked is partially fixed and partially invalid.