Changeset 158007 in webkit


Ignore:
Timestamp:
Oct 25, 2013 6:46:55 AM (10 years ago)
Author:
Antti Koivisto
Message:

REGRESSION(r157950): It made many tests assert on Windows, EFL, GTK
https://bugs.webkit.org/show_bug.cgi?id=123309

Reviewed by Andreas Kling.

Disable simple line layout on non-Mac plaforms for now.

  • rendering/SimpleLineLayout.cpp:

(WebCore::SimpleLineLayout::canUseFor):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r158004 r158007  
     12013-10-25  Antti Koivisto  <antti@apple.com>
     2
     3        REGRESSION(r157950): It made many tests assert on Windows, EFL, GTK
     4        https://bugs.webkit.org/show_bug.cgi?id=123309
     5
     6        Reviewed by Andreas Kling.
     7
     8        Disable simple line layout on non-Mac plaforms for now.
     9
     10        * rendering/SimpleLineLayout.cpp:
     11        (WebCore::SimpleLineLayout::canUseFor):
     12
    1132013-10-24  Andreas Kling  <akling@apple.com>
    214
  • trunk/Source/WebCore/rendering/SimpleLineLayout.cpp

    r157998 r158007  
    5555bool canUseFor(const RenderBlockFlow& flow)
    5656{
     57#if !PLATFORM(MAC)
     58    // FIXME: Non-mac platforms are hitting ASSERT(run.charactersLength() >= run.length())
     59    // https://bugs.webkit.org/show_bug.cgi?id=123338
     60    return false;
     61#endif
    5762    if (!flow.firstChild())
    5863        return false;
Note: See TracChangeset for help on using the changeset viewer.