Changeset 269627 in webkit


Ignore:
Timestamp:
Nov 10, 2020 6:59:17 AM (3 years ago)
Author:
Antti Koivisto
Message:

[LFC][Integration] Allow object-fit
https://bugs.webkit.org/show_bug.cgi?id=218740

Reviewed by Zalan Bujtas.

  • layout/integration/LayoutIntegrationCoverage.cpp:

(WebCore::LayoutIntegration::canUseForChild):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r269624 r269627  
     12020-11-10  Antti Koivisto  <antti@apple.com>
     2
     3        [LFC][Integration] Allow object-fit
     4        https://bugs.webkit.org/show_bug.cgi?id=218740
     5
     6        Reviewed by Zalan Bujtas.
     7
     8        * layout/integration/LayoutIntegrationCoverage.cpp:
     9        (WebCore::LayoutIntegration::canUseForChild):
     10
    1112020-11-10  Antoine Quint  <graouts@webkit.org>
    212
  • trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp

    r269600 r269627  
    277277        if (style.width().isPercent() || style.height().isPercent())
    278278            SET_REASON_AND_RETURN_IF_NEEDED(FlowHasNonSupportedChild, reasons, includeReasons);
    279         if (style.objectFit() != RenderStyle::initialObjectFit())
    280             SET_REASON_AND_RETURN_IF_NEEDED(FlowHasNonSupportedChild, reasons, includeReasons);
    281279
    282280        if (is<RenderImage>(replaced)) {
Note: See TracChangeset for help on using the changeset viewer.