Bug 219230 - [LFC][Integration] LayoutIntegration::Line::rect is way too ambiguous
Summary: [LFC][Integration] LayoutIntegration::Line::rect is way too ambiguous
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: 2020-11-20 16:27 PST by zalan
Modified: 2020-11-21 09:04 PST (History)
5 users (show)

See Also:


Attachments
Patch (11.43 KB, patch)
2020-11-20 16:31 PST, zalan
no flags Details | Formatted Diff | Diff
Patch (11.43 KB, patch)
2020-11-21 06:13 PST, zalan
ews-feeder: commit-queue-
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description zalan 2020-11-20 16:27:54 PST
let's use lineBox* helpers instead
Comment 1 zalan 2020-11-20 16:31:17 PST
Created attachment 414744 [details]
Patch
Comment 2 Antti Koivisto 2020-11-20 22:23:11 PST
Comment on attachment 414744 [details]
Patch

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

> Source/WebCore/layout/integration/LayoutIntegrationLineIteratorModernPath.h:62
> -    LayoutUnit lineBoxTop() const { return LayoutUnit::fromFloatRound(line().rect().y()); }
> -    LayoutUnit lineBoxBottom() const { return LayoutUnit::fromFloatRound(line().rect().maxY()); }
> +    LayoutUnit lineBoxTop() const { return LayoutUnit::fromFloatRound(line().lineBoxTop()); }
> +    LayoutUnit lineBoxBottom() const { return LayoutUnit::fromFloatRound(line().lineBoxBottom()); }
>  
>      // FIXME: What should these really be?
>      LayoutUnit selectionTop() const { return top(); }
>      LayoutUnit selectionTopForHitTesting() const { return top(); }
>      LayoutUnit selectionBottom() const { return bottom(); }
>  
> -    float contentLogicalLeft() const { return line().rect().x() + line().contentLeftOffset(); }
> +    float contentLogicalLeft() const { return line().lineBoxLeft() + line().contentLeftOffset(); }

Much better!
Comment 3 zalan 2020-11-21 06:13:59 PST
Created attachment 414760 [details]
Patch
Comment 4 EWS 2020-11-21 07:15:43 PST
Committed r270146: <https://trac.webkit.org/changeset/270146>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 414760 [details].
Comment 5 Radar WebKit Bug Importer 2020-11-21 07:16:18 PST
<rdar://problem/71655183>