Changeset 254380 in webkit


Ignore:
Timestamp:
Jan 10, 2020 4:32:16 PM (4 years ago)
Author:
Alan Bujtas
Message:

[LFC] Add missing escape reason to BlockFormattingContext::Quirks::stretchedInFlowHeight
https://bugs.webkit.org/show_bug.cgi?id=206076
<rdar://problem/58483919>

Reviewed by Antti Koivisto.

This is also a valid formatting context escape.

  • layout/blockformatting/BlockFormattingContextQuirks.cpp:

(WebCore::Layout::BlockFormattingContext::Quirks::stretchedInFlowHeight):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r254378 r254380  
     12020-01-10  Zalan Bujtas  <zalan@apple.com>
     2
     3        [LFC] Add missing escape reason to BlockFormattingContext::Quirks::stretchedInFlowHeight
     4        https://bugs.webkit.org/show_bug.cgi?id=206076
     5        <rdar://problem/58483919>
     6
     7        Reviewed by Antti Koivisto.
     8
     9        This is also a valid formatting context escape.
     10
     11        * layout/blockformatting/BlockFormattingContextQuirks.cpp:
     12        (WebCore::Layout::BlockFormattingContext::Quirks::stretchedInFlowHeight):
     13
    1142020-01-10  Antti Koivisto  <antti@apple.com>
    215
  • trunk/Source/WebCore/layout/blockformatting/BlockFormattingContextQuirks.cpp

    r254336 r254380  
    6868    auto& formattingContext = this->formattingContext();
    6969    auto& documentBox = layoutBox.isDocumentBox() ? layoutBox : *layoutBox.parent();
    70     auto& documentBoxGeometry = formattingContext.geometryForBox(documentBox);
     70    auto& documentBoxGeometry = formattingContext.geometryForBox(documentBox, EscapeReason::BodyStrechesToViewportQuirk);
    7171
    7272    auto& initialContainingBlockGeometry = formattingContext.geometryForBox(initialContainingBlock(layoutBox), EscapeReason::BodyStrechesToViewportQuirk);
Note: See TracChangeset for help on using the changeset viewer.