Title: [249082] trunk/Source/WebCore
Revision
249082
Author
za...@apple.com
Date
2019-08-24 06:17:03 -0700 (Sat, 24 Aug 2019)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (249081 => 249082)


--- trunk/Source/WebCore/ChangeLog	2019-08-24 13:16:41 UTC (rev 249081)
+++ trunk/Source/WebCore/ChangeLog	2019-08-24 13:17:03 UTC (rev 249082)
@@ -1,5 +1,16 @@
 2019-08-24  Zalan Bujtas  <za...@apple.com>
 
+        [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):
+
+2019-08-24  Zalan Bujtas  <za...@apple.com>
+
         [LFC] Remove redundant Layout::Box::ElementType::TableRowGroup
         https://bugs.webkit.org/show_bug.cgi?id=201112
         <rdar://problem/54663833>

Modified: trunk/Source/WebCore/layout/layouttree/LayoutTreeBuilder.cpp (249081 => 249082)


--- trunk/Source/WebCore/layout/layouttree/LayoutTreeBuilder.cpp	2019-08-24 13:16:41 UTC (rev 249081)
+++ trunk/Source/WebCore/layout/layouttree/LayoutTreeBuilder.cpp	2019-08-24 13:17:03 UTC (rev 249082)
@@ -284,6 +284,12 @@
         stream << "TABLE";
     else if (layoutBox.isTableCaption())
         stream << "CAPTION";
+    else if (layoutBox.isTableHeader())
+        stream << "THEAD";
+    else if (layoutBox.isTableBody())
+        stream << "TBODY";
+    else if (layoutBox.isTableFooter())
+        stream << "TFOOT";
     else if (layoutBox.isTableCell())
         stream << "TD";
     else if (layoutBox.isTableRow())
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to