RESOLVED CONFIGURATION CHANGED 90281
Paddings are rounded to whole pixels
https://bugs.webkit.org/show_bug.cgi?id=90281
Summary Paddings are rounded to whole pixels
Behdad Esfahbod
Reported 2012-06-29 07:42:46 PDT
Test with Chrome that has SUBPIXEL_LAYOUT enabled. While testing for bug 90097, I came across this bug: According to https://trac.webkit.org/wiki/LayoutUnit paddings are supposed to have subpixel precision, but this sample shows that they are being rounded: http://jsfiddle.net/behdad/ALd5F/5/ Output: span[position:static; padding-right:7.5px]: rect.width=7 span[position:fixed; padding-right:7.5px]: rect.width=7 span[position:absolute; padding-right:7.5px]: rect.width=7 span[position:relative; padding-right:7.5px]: rect.width=7 Applying patches in bug 90097 fixes the two middle cases, but no the other two: span[position:static; padding-right:7.5px]: rect.width=7 span[position:fixed; padding-right:7.5px]: rect.width=7.5 span[position:absolute; padding-right:7.5px]: rect.width=7.5 span[position:relative; padding-right:7.5px]: rect.width=7
Attachments
Rob Buis
Comment 1 2021-04-03 14:08:31 PDT
This works these days.
Ahmad Saleem
Comment 2 2022-12-16 02:31:50 PST
*** Safari Technology Preview 160 *** span[position:static; padding-right:7.5px]: rect.width=7.5 span[position:fixed; padding-right:7.5px]: rect.width=7.5 span[position:absolute; padding-right:7.5px]: rect.width=7.5 span[position:relative; padding-right:7.5px]: rect.width=7.5 *** Chrome Canary 110 *** span[position:static; padding-right:7.5px]: rect.width=7.5 span[position:fixed; padding-right:7.5px]: rect.width=7.5 span[position:absolute; padding-right:7.5px]: rect.width=7.5 span[position:relative; padding-right:7.5px]: rect.width=7.5 *** Firefox Nightly 110 *** span[position:static; padding-right:7.5px]: rect.width=7.5 span[position:fixed; padding-right:7.5px]: rect.width=7.5 span[position:absolute; padding-right:7.5px]: rect.width=7.5 span[position:relative; padding-right:7.5px]: rect.width=7.5 _______ Since all browsers are matching each other, I am going to mark this as "RESOLVED CONFIGURATION CHANGED". Thanks!
Note You need to log in before you can comment on or make changes to this bug.