Changeset 295204 in webkit


Ignore:
Timestamp:
Jun 3, 2022, 6:59:08 AM (3 years ago)
Author:
commit-queue@webkit.org
Message:

Layout table captions in simplified layout
https://bugs.webkit.org/show_bug.cgi?id=241262

Patch by Rob Buis <rbuis@igalia.com> on 2022-06-03
Reviewed by Alan Bujtas.

Layout table captions in simplified layout.

  • Source/WebCore/rendering/RenderTable.cpp:

(WebCore::RenderTable::simplifiedNormalFlowLayout):

Canonical link: https://commits.webkit.org/251261@main

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/rendering/RenderTable.cpp

    r293900 r295204  
    414414void RenderTable::simplifiedNormalFlowLayout()
    415415{
     416    for (auto& caption : m_captions)
     417        caption->layoutIfNeeded();
    416418    for (RenderTableSection* section = topSection(); section; section = sectionBelow(section)) {
    417419        section->layoutIfNeeded();
Note: See TracChangeset for help on using the changeset viewer.