Changeset 29021 in webkit


Ignore:
Timestamp:
Dec 28, 2007 8:19:30 PM (16 years ago)
Author:
mitz@apple.com
Message:

Reviewed by Mark Rowe.

Covered by existing pixel tests.

  • platform/graphics/mac/FontMac.mm: (WebCore::Font::drawComplexText): Corrected to maintain the style information in the adjusted text run when passing it to ATSUILayoutParameters. Prior to r28298 the style was passed separately.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r29019 r29021  
     12007-12-28  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Mark Rowe.
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=16650
     6          <rdar://problem/5664872> REGRESSION (r28278-r28314): ATSUI uses LTR writing direction for all text runs
     7
     8        Covered by existing pixel tests.
     9
     10        * platform/graphics/mac/FontMac.mm:
     11        (WebCore::Font::drawComplexText): Corrected to maintain the style
     12        information in the adjusted text run when passing it to
     13        ATSUILayoutParameters. Prior to r28298 the style was passed separately.
     14
    1152007-12-29  Nikolas Zimmermann  <zimmermann@kde.org>
    216
  • trunk/WebCore/platform/graphics/mac/FontMac.mm

    r28298 r29021  
    518518        from++;
    519519
    520     ATSULayoutParameters params(TextRun(adjustedRun.characters(), adjustedRun.length()));
     520    ATSULayoutParameters params(adjustedRun);
    521521    params.initialize(this, graphicsContext);
    522522   
Note: See TracChangeset for help on using the changeset viewer.