| Summary: | Remove redundant HitTestLocation(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | zalan <zalan> | ||||||||||
| Component: | Layout and Rendering | Assignee: | zalan <zalan> | ||||||||||
| Status: | RESOLVED FIXED | ||||||||||||
| Severity: | Normal | CC: | bfulgham, changseok, esprehn+autocc, ews-watchlist, glenn, kondapallykalyan, pdr, sam, simon.fraser, webkit-bug-importer, zalan | ||||||||||
| Priority: | P2 | Keywords: | InRadar | ||||||||||
| Version: | WebKit Nightly Build | ||||||||||||
| Hardware: | Unspecified | ||||||||||||
| OS: | Unspecified | ||||||||||||
| Bug Depends on: | 227182, 227185 | ||||||||||||
| Bug Blocks: | |||||||||||||
| Attachments: |
|
||||||||||||
|
Description
zalan
2021-06-19 15:51:11 PDT
Created attachment 431807 [details]
Patch
Created attachment 431819 [details]
Patch
Comment on attachment 431819 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=431819&action=review > Source/WebCore/testing/Internals.cpp:2323 > + auto hitTestResult = HitTestResult { }; > + auto size = LayoutSize { leftPadding + rightPadding, topPadding + bottomPadding }; > + if (size.isEmpty()) > + hitTestResult = HitTestResult { point }; > + else { > + auto adjustedPosition = LayoutPoint { flooredIntPoint(point) }; > + adjustedPosition -= LayoutSize { leftPadding, topPadding }; > + hitTestResult = HitTestResult { LayoutRect { adjustedPosition, size } }; > + } I would usually do this using a lambda so that hitTestResult is not assigned twice. Can the two adjustedPosition lines be written as one line? auto adjustedPosition = LayoutPoint { flooredIntPoint(point) } - LayoutSize { leftPadding, topPadding }; ? (In reply to Sam Weinig from comment #3) > Comment on attachment 431819 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=431819&action=review > > > Source/WebCore/testing/Internals.cpp:2323 > > + auto hitTestResult = HitTestResult { }; > > + auto size = LayoutSize { leftPadding + rightPadding, topPadding + bottomPadding }; > > + if (size.isEmpty()) > > + hitTestResult = HitTestResult { point }; > > + else { > > + auto adjustedPosition = LayoutPoint { flooredIntPoint(point) }; > > + adjustedPosition -= LayoutSize { leftPadding, topPadding }; > > + hitTestResult = HitTestResult { LayoutRect { adjustedPosition, size } }; > > + } > > I would usually do this using a lambda so that hitTestResult is not assigned > twice. I normally go overboard with lambdas, not sure what happened here. :) > > Can the two adjustedPosition lines be written as one line? > > auto adjustedPosition = LayoutPoint { flooredIntPoint(point) } - LayoutSize > { leftPadding, topPadding }; > > ? Yup Thanks. Created attachment 431830 [details]
Patch
Created attachment 431850 [details]
Patch
Committed r279066 (238986@main): <https://commits.webkit.org/238986@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 431850 [details]. |