Bug 14956 - 1 pixel background-image shift
Summary: 1 pixel background-image shift
Status: RESOLVED DUPLICATE of bug 18013
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 419.x
Hardware: Mac OS X 10.4
: P2 Normal
Assignee: Nobody
URL: http://robgoodlatte.com/2007/02/16/ha...
Keywords: NeedsReduction
Depends on:
Blocks:
 
Reported: 2007-08-13 06:01 PDT by mupo
Modified: 2011-06-25 07:45 PDT (History)
7 users (show)

See Also:


Attachments
Reduced test case demonstrating the centering bug. (474 bytes, text/html)
2008-08-30 00:32 PDT, Beanbag Amerika
no flags Details
Makes text-align: center and background-position: center align consistently. (868.03 KB, patch)
2009-09-07 12:14 PDT, Dominic Cooney
abarth: review-
eric: commit-queue-
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description mupo 2007-08-13 06:01:16 PDT
"The problem occurs when positioning background images using the ‘center’ keyword. It’s a rounding problem - odd window widths cause centered background images to misalign with centered div’s."
Comment 1 David Kilzer (:ddkilzer) 2007-08-13 09:04:00 PDT
Does this still happen with WebKit nightly builds?  http://nightly.webkit.org/

Comment 2 mupo 2007-08-14 03:32:37 PDT
Yes, this occurs still in the actual nightly build for Windows (WebKit r24872 built on 05 August 2007, Safari 3.0.3 (522.15.5))
Comment 3 David Kilzer (:ddkilzer) 2007-08-14 04:52:01 PDT
(In reply to comment #2)
> Yes, this occurs still in the actual nightly build for Windows (WebKit r24872
> built on 05 August 2007, Safari 3.0.3 (522.15.5))

Could you post a (reduced) test case without the workaround incorporated?  Thanks!

Comment 4 Beanbag Amerika 2008-08-30 00:32:27 PDT
Created attachment 23079 [details]
Reduced test case demonstrating the centering bug.

Still present in nightly builds. This bug is in the latest versions of Firefox as well..
Comment 5 Dominic Cooney 2009-09-07 12:14:21 PDT
Created attachment 39158 [details]
Makes text-align: center and background-position: center align consistently.


---
 443 files changed, 3296 insertions(+), 2774 deletions(-)
Comment 6 Eric Seidel (no email) 2009-09-24 13:05:39 PDT
Comment on attachment 39158 [details]
Makes text-align: center and background-position: center align consistently.

The tab in your ChangeLog will prevent this from being committed automatically.  You'll need to upload a tab-less patch if that's your desire.

Getting this patch reviewed is entirely about convincing someone that your change is correct.  It's scary because it changes lots of tests.  I can't tell if this is correct or not.  You might be able to get a quick review if you track down hyatt in #webkit.
Comment 7 Adam Barth 2009-10-13 13:22:30 PDT
Comment on attachment 39158 [details]
Makes text-align: center and background-position: center align consistently.

r- for tab in the ChangeLog.  Holy moly, that's a lot of test expectation changes!  How does this not break the web in half?
Comment 8 Simon Fraser (smfr) 2009-10-13 13:26:30 PDT
Is there a reason the change affects the test postion, rather than the background-position? What do other browsers do?
Comment 9 Dominic Cooney 2009-10-16 19:54:56 PDT
Centered backgrounds and centered content are out of alignment because background position is calculated with floating-point arithmetic and content alignment is calculated with integer arithmetic (division truncates).

This bug could be fixed by making background positions also truncate, but that would break sites that work around this bug by aligning their backgrounds at 49.99etc.%. It would also mean taking % computations for content and making them truncate too (otherwise backgrounds at n% and content at n% will shimmer.)

Because a lot of tests gratuitously use centered content to look purty, changing how content is aligned requires rebaselining lots of tests.

Firefox 3.5.4 doesn't truncate when it computes centered content position. For example, 500px content in a 1375px container is at offsetLeft 438 and a centered 500px background image is also at 438; Safari would truncate 437.5 and put the image at offsetLeft 437, but round up and put the background image at 438.

I'm not sure if IE always truncates or rounds. But it does it consistently and doesn't exhibit this bug.
Comment 10 Eric Celeste 2011-02-02 20:02:35 PST
By the way, this seems to be the same bug reported as Bug 18013.
Comment 11 Dominic Cooney 2011-06-25 07:45:59 PDT

*** This bug has been marked as a duplicate of bug 18013 ***