| Summary: | [LFC][FFC] Add flex box/item to showLayoutTree | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | zalan <zalan> | ||||||
| Component: | Layout and Rendering | Assignee: | zalan <zalan> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | bfulgham, sam, simon.fraser, webkit-bug-importer, zalan | ||||||
| Priority: | P2 | Keywords: | InRadar | ||||||
| Version: | WebKit Nightly Build | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Attachments: |
|
||||||||
|
Description
zalan
2020-09-18 03:47:20 PDT
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]. 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. |