⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 277323 in webkit


Ignore:
Timestamp:
May 11, 2021, 6:53:32 AM (5 years ago)
Author:
Alan Bujtas
Message:

[LFC][Integration] Disable IFC when inline level box has box shadow
https://bugs.webkit.org/show_bug.cgi?id=225634

Reviewed by Darin Adler.

Needs painting support.

  • layout/integration/LayoutIntegrationCoverage.cpp:

(WebCore::LayoutIntegration::canUseForChild):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r277322 r277323  
     12021-05-11  Zalan Bujtas  <zalan@apple.com>
     2
     3        [LFC][Integration] Disable IFC when inline level box has box shadow
     4        https://bugs.webkit.org/show_bug.cgi?id=225634
     5
     6        Reviewed by Darin Adler.
     7
     8        Needs painting support.
     9
     10        * layout/integration/LayoutIntegrationCoverage.cpp:
     11        (WebCore::LayoutIntegration::canUseForChild):
     12
    1132021-05-11  Jean-Yves Avenard  <jya@apple.com>
    214
  • trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp

    r275515 r277323  
    636636        if (style.minHeight().isPercent() || style.maxHeight().isPercent())
    637637            return false;
     638        if (style.boxShadow())
     639            return false;
    638640        return true;
    639641    };
Note: See TracChangeset for help on using the changeset viewer.