ssia
Created attachment 409125 [details] Patch
Comment on attachment 409125 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=409125&action=review > Source/WebCore/layout/layouttree/LayoutTreeBuilder.cpp:453 > + stream << "Fkex box"; typo. Fkex -> Flex
(In reply to Sam Weinig from comment #2) > Comment on attachment 409125 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=409125&action=review > > > Source/WebCore/layout/layouttree/LayoutTreeBuilder.cpp:453 > > + stream << "Fkex box"; > > typo. Fkex -> Flex never post patches at 4am.
Created attachment 409179 [details] Patch
Committed r267303: <https://trac.webkit.org/changeset/267303> All reviewed patches have been landed. Closing bug and clearing flags on attachment 409179 [details].
<rdar://problem/69185543>
Layout::Boxes need a virtual String debugDescription() const so they can print themselves.
(In reply to Simon Fraser (smfr) from comment #7) > Layout::Boxes need a virtual String debugDescription() const so they can > print themselves. Since the LayoutBox has a rather flat class hierarchy (LFC tree is not typed as heavily as the render tree) we would probably end up with a big switch in Layout::Box. I'd rather keep it separate for now.