Changeset 146334 in webkit


Ignore:
Timestamp:
Mar 20, 2013 6:08:38 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r146331.
http://trac.webkit.org/changeset/146331
https://bugs.webkit.org/show_bug.cgi?id=112795

Does not work as expected (Requested by carewolf on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2013-03-20

Source/WebCore:

  • platform/graphics/qt/FontQt.cpp:

(WebCore::Font::initFormatForTextLayout):

LayoutTests:

  • platform/qt/TestExpectations:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r146331 r146334  
     12013-03-20  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r146331.
     4        http://trac.webkit.org/changeset/146331
     5        https://bugs.webkit.org/show_bug.cgi?id=112795
     6
     7        Does not work as expected (Requested by carewolf on #webkit).
     8
     9        * platform/qt/TestExpectations:
     10
    1112013-03-20  Allan Sandfeld Jensen  <allan.jensen@digia.com>
    212
  • trunk/LayoutTests/platform/qt/TestExpectations

    r146331 r146334  
    18231823fast/text/international/spaces-combined-in-vertical-text.html
    18241824
     1825webkit.org/b/112668 fast/text/word-space-with-kerning-3.html [ Skip ]
     1826
    18251827fast/writing-mode/border-styles-vertical-lr.html
    18261828fast/writing-mode/border-styles-vertical-rl.html
  • trunk/Source/WebCore/ChangeLog

    r146333 r146334  
     12013-03-20  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r146331.
     4        http://trac.webkit.org/changeset/146331
     5        https://bugs.webkit.org/show_bug.cgi?id=112795
     6
     7        Does not work as expected (Requested by carewolf on #webkit).
     8
     9        * platform/graphics/qt/FontQt.cpp:
     10        (WebCore::Font::initFormatForTextLayout):
     11
    1122013-03-20  Eugene Klyuchnikov  <eustas@chromium.org>
    213
  • trunk/Source/WebCore/platform/graphics/qt/FontQt.cpp

    r146331 r146334  
    258258    if (m_letterSpacing)
    259259        range.format.setFontLetterSpacing(m_letterSpacing);
     260    if (typesettingFeatures() & Kerning)
     261        range.format.setFontKerning(true);
    260262    if (isSmallCaps())
    261263        range.format.setFontCapitalization(QFont::SmallCaps);
    262     range.format.setFontKerning(typesettingFeatures() & Kerning);
    263264
    264265    if (range.format.propertyCount())
Note: See TracChangeset for help on using the changeset viewer.