RESOLVED FIXED Bug 77368
[chromium] Win mock scrollbars appear to overflow by a pixel to the right and bottom
https://bugs.webkit.org/show_bug.cgi?id=77368
Summary [chromium] Win mock scrollbars appear to overflow by a pixel to the right and...
Tony Chang
Reported 2012-01-30 14:01:50 PST
I'll upload an pixel result that shows this. Other platforms don't seem to do this.
Attachments
pixel result with scrollbars (4.21 KB, image/png)
2012-01-30 14:02 PST, Tony Chang
no flags
Patch (1.55 KB, patch)
2012-06-07 12:00 PDT, Tony Chang
ojan: review+
Tony Chang
Comment 1 2012-01-30 14:02:28 PST
Created attachment 124596 [details] pixel result with scrollbars In the attach image, the scrollbars shouldn't overflow the green boxes.
Tony Chang
Comment 2 2012-01-30 14:02:55 PST
dpranke said he's hoping to work on this this quarter.
Tony Chang
Comment 3 2012-03-19 12:01:55 PDT
I tracked this down since I had another ref test fail. The bug is here: http://trac.webkit.org/browser/trunk/Tools/DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp#L51 WebRect is defined as a point + width/height. SkIRect is a left, top, right and bottom edge. The conversion needs to subtract 1 from the width and the height. For example, suppose WebRect is at 0, 0 and has a width and height of 10. This converts to a SkIRect with points at 0, 0, 10, 10, but that's actually a width and height of 11. This also explains why we don't have right/bottom edges on any of our scrollbars, e.g.: http://trac.webkit.org/browser/trunk/LayoutTests/platform/chromium-win/css1/basic/class_as_selector-expected.png We'll need to rebaseline many tests, e.g., all textareas and all scrollbars are different.
Tony Chang
Comment 4 2012-06-07 12:00:49 PDT
Tony Chang
Comment 5 2012-06-07 13:07:05 PDT
Kent Tamura
Comment 6 2012-06-07 17:21:25 PDT
Probably all of rectangles drawn by the mock theme have this issue. e.g. LayoutTests/platform/chromium-win/fast/forms/number/input-appearance-spinbutton-layer-expected.png
Note You need to log in before you can comment on or make changes to this bug.