Opened 13 years ago

Closed 13 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

Change History (1)

comment:1 Changed 13 years ago by Jakub Ś

Resolution: fixed
Status: newclosed

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.

  1. Choose Arial and type some text
  2. Deselect Arial, choose Georgia and type some text
  3. Deselect Georgia, choose Comic Sans and type some text

This ticked is partially fixed and partially invalid.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy