Changeset 132802 in webkit


Ignore:
Timestamp:
Oct 29, 2012 7:47:34 AM (11 years ago)
Author:
Csaba Osztrogonác
Message:

[Qt] Text with zero font size renders as X px sometimes, causing fast/text/zero-font-size-2.html to fail
https://bugs.webkit.org/show_bug.cgi?id=100115

Reviewed by Noam Rosenthal.

Source/WebCore:

  • platform/graphics/qt/FontQt.cpp:

(WebCore::Font::drawGlyphs):

LayoutTests:

  • platform/qt/TestExpectations: Unskip fast/text/zero-font-size-2.html.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r132796 r132802  
     12012-10-29  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [Qt] Text with zero font size renders as X px sometimes, causing fast/text/zero-font-size-2.html to fail
     4        https://bugs.webkit.org/show_bug.cgi?id=100115
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        * platform/qt/TestExpectations: Unskip fast/text/zero-font-size-2.html.
     9
    1102012-10-29  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
    211
  • trunk/LayoutTests/platform/qt/TestExpectations

    r132785 r132802  
    24922492webkit.org/b/99306 css3/filters/effect-blur-hw.html [ ImageOnlyFailure ] # Blur effect radius is too small on WebKit1, the effect not applied at all on WebKit2.
    24932493
    2494 # [Qt] Text with zero font size renders as X px sometimes, causing fast/text/zero-font-size-2.html to fail
    2495 webkit.org/b/100115 fast/text/zero-font-size-2.html
    2496 
    24972494# REGRESSION(r132143): It made fast/xmlhttprequest/xmlhttprequest-recursive-sync-event.html flakey
    24982495webkit.org/b/100117 fast/xmlhttprequest/xmlhttprequest-recursive-sync-event.html
  • trunk/Source/WebCore/ChangeLog

    r132798 r132802  
     12012-10-29  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [Qt] Text with zero font size renders as X px sometimes, causing fast/text/zero-font-size-2.html to fail
     4        https://bugs.webkit.org/show_bug.cgi?id=100115
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        * platform/graphics/qt/FontQt.cpp:
     9        (WebCore::Font::drawGlyphs):
     10
    1112012-10-29  Huang Dongsung  <luxtella@company100.net>
    212
  • trunk/Source/WebCore/platform/graphics/qt/FontQt.cpp

    r132205 r132802  
    279279void Font::drawGlyphs(GraphicsContext* context, const SimpleFontData* fontData, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point) const
    280280{
     281    if (!fontData->platformData().size())
     282        return;
     283
    281284    if (context->paintingDisabled())
    282285        return;
Note: See TracChangeset for help on using the changeset viewer.