RESOLVED FIXED 227186
Remove redundant HitTestLocation(const LayoutPoint& centerPoint, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding)
https://bugs.webkit.org/show_bug.cgi?id=227186
Summary Remove redundant HitTestLocation(const LayoutPoint& centerPoint, unsigned top...
alan
Reported 2021-06-19 15:51:11 PDT
Let's replace the _one_ caller (Internals) with the LayoutRect version.
Attachments
Patch (9.66 KB, patch)
2021-06-19 15:57 PDT, alan
no flags
Patch (9.66 KB, patch)
2021-06-20 06:26 PDT, alan
no flags
Patch (9.60 KB, patch)
2021-06-20 21:13 PDT, alan
no flags
Patch (9.55 KB, patch)
2021-06-21 05:48 PDT, alan
no flags
alan
Comment 1 2021-06-19 15:57:21 PDT
alan
Comment 2 2021-06-20 06:26:41 PDT
Sam Weinig
Comment 3 2021-06-20 13:15:14 PDT
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 }; ?
alan
Comment 4 2021-06-20 21:12:14 PDT
(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.
alan
Comment 5 2021-06-20 21:13:14 PDT
alan
Comment 6 2021-06-21 05:48:26 PDT
EWS
Comment 7 2021-06-21 08:08:52 PDT
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].
Radar WebKit Bug Importer
Comment 8 2021-06-21 08:09:46 PDT
Note You need to log in before you can comment on or make changes to this bug.