RESOLVED FIXED 210673
Horizontal overflow overlay scrollbar is misplaced in RTL
https://bugs.webkit.org/show_bug.cgi?id=210673
Summary Horizontal overflow overlay scrollbar is misplaced in RTL
Simon Fraser (smfr)
Reported 2020-04-17 14:33:06 PDT
Created attachment 396801 [details] See the third box. turn layer borders on We put the horizontal scrollbar in the wrong place.
Attachments
See the third box. turn layer borders on (1.13 KB, text/html)
2020-04-17 14:33 PDT, Simon Fraser (smfr)
no flags
Screenshot (78.09 KB, image/png)
2020-04-17 14:33 PDT, Simon Fraser (smfr)
no flags
Patch (34.04 KB, patch)
2020-04-20 22:39 PDT, Simon Fraser (smfr)
koivisto: review+
Patch (33.28 KB, patch)
2020-04-21 09:32 PDT, Simon Fraser (smfr)
no flags
Simon Fraser (smfr)
Comment 1 2020-04-17 14:33:32 PDT
Created attachment 396802 [details] Screenshot
Radar WebKit Bug Importer
Comment 2 2020-04-17 14:33:46 PDT
Simon Fraser (smfr)
Comment 3 2020-04-20 22:39:13 PDT
Antti Koivisto
Comment 4 2020-04-21 02:16:16 PDT
Comment on attachment 397055 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=397055&action=review r+ but please consider the comment. > Source/WebCore/rendering/RenderLayer.cpp:3185 > + IntRect hBarRect, vBarRect, cornerRect, resizerRect; > + getOverflowControlsRects(hBarRect, vBarRect, cornerRect, resizerRect); I'd much prefer a function that returns a struct over one that requires awkward out parameters.
Simon Fraser (smfr)
Comment 5 2020-04-21 09:32:59 PDT
Antti Koivisto
Comment 6 2020-04-21 09:42:29 PDT
Comment on attachment 397055 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=397055&action=review > Source/WebCore/rendering/RenderLayer.cpp:3364 > + auto cornerRect = [](const IntRect& boundsRect, IntSize cornerSize, bool placeVerticalScrollbarOnTheLeft) { > + if (placeVerticalScrollbarOnTheLeft) { > + auto bottomLeftCorner = boundsRect.minXMaxYCorner(); > + return IntRect { { bottomLeftCorner.x(), bottomLeftCorner.y() - cornerSize.height(), }, cornerSize }; > + } > + return IntRect { boundsRect.maxXMaxYCorner() - cornerSize, cornerSize }; > + }; > + > + if (scrollbarsAvoidCorner) > + scrollCornerRect = cornerRect(overflowControlsPositioningRect, cornerSize, placeVerticalScrollbarOnTheLeft); > + else > + scrollCornerRect = { }; You could include 'if (!scrollbarsAvoidCorner)' branch into the lambda as well. Not sure this single use lambda really needs arguments at all, it could just capture the variables: [&] { Other branches in this function would probably benefit from similar use of lambdas.
Simon Fraser (smfr)
Comment 7 2020-04-21 11:17:28 PDT
Note You need to log in before you can comment on or make changes to this bug.