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

Changeset 249082 in webkit


Ignore:
Timestamp:
Aug 24, 2019, 6:17:03 AM (7 years ago)
Author:
Alan Bujtas
Message:

[LFC] Add THEAD/TBODY/TFOOT output to Layout::showLayoutTree
https://bugs.webkit.org/show_bug.cgi?id=201113
<rdar://problem/54664134>

Reviewed by Antti Koivisto.

  • layout/layouttree/LayoutTreeBuilder.cpp:

(WebCore::Layout::outputLayoutBox):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r249081 r249082  
     12019-08-24  Zalan Bujtas  <zalan@apple.com>
     2
     3        [LFC] Add THEAD/TBODY/TFOOT output to Layout::showLayoutTree
     4        https://bugs.webkit.org/show_bug.cgi?id=201113
     5        <rdar://problem/54664134>
     6
     7        Reviewed by Antti Koivisto.
     8
     9        * layout/layouttree/LayoutTreeBuilder.cpp:
     10        (WebCore::Layout::outputLayoutBox):
     11
    1122019-08-24  Zalan Bujtas  <zalan@apple.com>
    213
  • trunk/Source/WebCore/layout/layouttree/LayoutTreeBuilder.cpp

    r249081 r249082  
    285285    else if (layoutBox.isTableCaption())
    286286        stream << "CAPTION";
     287    else if (layoutBox.isTableHeader())
     288        stream << "THEAD";
     289    else if (layoutBox.isTableBody())
     290        stream << "TBODY";
     291    else if (layoutBox.isTableFooter())
     292        stream << "TFOOT";
    287293    else if (layoutBox.isTableCell())
    288294        stream << "TD";
Note: See TracChangeset for help on using the changeset viewer.