Bug 268885 - [FFC] Flex Formatting Context should follow IFC's integration codepath design
Summary: [FFC] Flex Formatting Context should follow IFC's integration codepath design
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Layout and Rendering (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: zalan
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2024-02-06 19:12 PST by zalan
Modified: 2024-02-12 10:45 PST (History)
11 users (show)

See Also:


Attachments
Patch (51.12 KB, patch)
2024-02-06 19:21 PST, zalan
ews-feeder: commit-queue-
Details | Formatted Diff | Diff
Patch (51.79 KB, patch)
2024-02-06 19:47 PST, zalan
no flags Details | Formatted Diff | Diff
[fast-cq]Patch (51.78 KB, patch)
2024-02-07 07:35 PST, zalan
no flags Details | Formatted Diff | Diff
[fast-cq]Patch (47.73 KB, patch)
2024-02-08 07:09 PST, zalan
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description zalan 2024-02-06 19:12:40 PST
ssia
Comment 1 zalan 2024-02-06 19:21:10 PST
Created attachment 469756 [details]
Patch
Comment 2 zalan 2024-02-06 19:47:52 PST
Created attachment 469757 [details]
Patch
Comment 3 zalan 2024-02-07 07:35:02 PST
Created attachment 469759 [details]
[fast-cq]Patch
Comment 4 EWS 2024-02-07 15:44:49 PST
Committed 274252@main (56ef8327a9a9): <https://commits.webkit.org/274252@main>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 469759 [details].
Comment 5 Radar WebKit Bug Importer 2024-02-07 15:46:15 PST
<rdar://problem/122502444>
Comment 6 Jonathan Bedard 2024-02-07 21:05:57 PST
Broke the watchOS build, tracking revert in https://bugs.webkit.org/show_bug.cgi?id=268964
Comment 7 zalan 2024-02-08 07:09:17 PST
Created attachment 469771 [details]
[fast-cq]Patch
Comment 8 EWS 2024-02-08 10:47:43 PST
Committed 274300@main (4bd4d4f8b539): <https://commits.webkit.org/274300@main>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 469771 [details].
Comment 9 Olivier Blin 2024-02-12 04:59:30 PST
Comment on attachment 469771 [details]
[fast-cq]Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=469771&action=review

> Source/WebCore/layout/formattingContexts/flex/FlexFormattingUtils.cppSource/WebCore/layout/formattingContexts/flex/FlexFormattingState.cpp:37
> +    : m_flexFormattingContext(flexFormattingContext)

Will the m_flexFormattingContext variable be used later?
It is unused right now.

It triggers build errors on Clang linux debug builds, with -Werror,-Wunused-private-field
Comment 10 zalan 2024-02-12 08:46:34 PST
(In reply to Olivier Blin from comment #9)
> Comment on attachment 469771 [details]
> [fast-cq]Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=469771&action=review
> 
> > Source/WebCore/layout/formattingContexts/flex/FlexFormattingUtils.cppSource/WebCore/layout/formattingContexts/flex/FlexFormattingState.cpp:37
> > +    : m_flexFormattingContext(flexFormattingContext)
> 
> Will the m_flexFormattingContext variable be used later?
> It is unused right now.
> 
> It triggers build errors on Clang linux debug builds, with
> -Werror,-Wunused-private-field
Yeah, it is going to be used soon but also if it blocks you in any way, feel free to remove it (or let me know if you want me to remove it). Thanks!
Comment 11 Olivier Blin 2024-02-12 10:45:47 PST
(In reply to zalan from comment #10)
> (In reply to Olivier Blin from comment #9)
> > Will the m_flexFormattingContext variable be used later?
> > It is unused right now.
> > 
> > It triggers build errors on Clang linux debug builds, with
> > -Werror,-Wunused-private-field
> Yeah, it is going to be used soon but also if it blocks you in any way, feel
> free to remove it (or let me know if you want me to remove it). Thanks!

No, that's ok if it is going to be used later.
Thanks for the heads-up!