Bug 201393

Summary: [LFC][Floats] Move FloatingState::constraints to FloatingContext
Product: WebKit Reporter: zalan <zalan>
Component: Layout and RenderingAssignee: zalan <zalan>
Status: RESOLVED FIXED    
Severity: Normal CC: bfulgham, commit-queue, koivisto, simon.fraser, webkit-bug-importer, zalan
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch none

Description zalan 2019-09-01 20:13:12 PDT
where it belongs.
Comment 1 Radar WebKit Bug Importer 2019-09-01 20:13:35 PDT
<rdar://problem/54939361>
Comment 2 zalan 2019-09-01 20:22:10 PDT
Created attachment 377835 [details]
Patch
Comment 3 Antti Koivisto 2019-09-03 10:09:32 PDT
Comment on attachment 377835 [details]
Patch

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

> Source/WebCore/layout/floats/FloatingContext.cpp:287
> +    for (int index = floats.size() - 1; index >= 0; --index) {

for (auto index = floats.size(); --index; )

is more compact.
Comment 4 zalan 2019-09-03 11:00:32 PDT
Created attachment 377908 [details]
Patch
Comment 5 WebKit Commit Bot 2019-09-03 11:21:48 PDT
Comment on attachment 377908 [details]
Patch

Clearing flags on attachment: 377908

Committed r249433: <https://trac.webkit.org/changeset/249433>
Comment 6 WebKit Commit Bot 2019-09-03 11:21:49 PDT
All reviewed patches have been landed.  Closing bug.