Changeset 254431 in webkit


Ignore:
Timestamp:
Jan 13, 2020 8:09:24 AM (4 years ago)
Author:
Antti Koivisto
Message:

[LFC][Integration] editing/text-iterator/findString.html fails on iOS
https://bugs.webkit.org/show_bug.cgi?id=206164

Reviewed by Zalan Bujtas.

Source/WebCore:

  • rendering/line/LineLayoutTraversalDisplayRunPath.h:

(WebCore::LineLayoutTraversal::DisplayRunPath::isLastOnLine const):

The test here was reversed.

LayoutTests:

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r254430 r254431  
     12020-01-13  Antti Koivisto  <antti@apple.com>
     2
     3        [LFC][Integration] editing/text-iterator/findString.html fails on iOS
     4        https://bugs.webkit.org/show_bug.cgi?id=206164
     5
     6        Reviewed by Zalan Bujtas.
     7
     8        * platform/ios/TestExpectations:
     9
    1102020-01-13  Antti Koivisto  <antti@apple.com>
    211
  • trunk/LayoutTests/platform/ios/TestExpectations

    r254428 r254431  
    34633463
    34643464webkit.org/b/200043 fast/text/international/system-language/navigator-language [ Pass Failure ]
    3465 
    3466 webkit.org/b/206164 editing/text-iterator/findString.html [ Failure ]
  • trunk/Source/WebCore/ChangeLog

    r254428 r254431  
     12020-01-13  Antti Koivisto  <antti@apple.com>
     2
     3        [LFC][Integration] editing/text-iterator/findString.html fails on iOS
     4        https://bugs.webkit.org/show_bug.cgi?id=206164
     5
     6        Reviewed by Zalan Bujtas.
     7
     8        * rendering/line/LineLayoutTraversalDisplayRunPath.h:
     9        (WebCore::LineLayoutTraversal::DisplayRunPath::isLastOnLine const):
     10
     11        The test here was reversed.
     12
    1132020-01-13  Antti Koivisto  <antti@apple.com>
    214
  • trunk/Source/WebCore/rendering/line/LineLayoutTraversalDisplayRunPath.h

    r253326 r254431  
    8585            return true;
    8686        auto& next = runs()[m_runIndex + 1];
    87         return run().lineIndex() == next.lineIndex();
     87        return run().lineIndex() != next.lineIndex();
    8888    }
    8989    bool isLast() const
Note: See TracChangeset for help on using the changeset viewer.