[Webkit-unassigned] [Bug 63075] REGRESSION (r88978): Text inside form controls looks really awful on Windows XP

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jun 22 07:16:56 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=63075





--- Comment #7 from Adam Roben (:aroben) <aroben at apple.com>  2011-06-22 07:16:57 PST ---
One potential fix is to change DrawingAreaImpl::createGraphicsContext to create a GraphicsContext that does not support alpha. I.e., change this:

    return adoptPtr(new GraphicsContext(bitmapDC, true));

to this:

    return adoptPtr(new GraphicsContext(bitmapDC, false));

Doing so gives the following pixel values:

0xffffebbf 0xff918080 0xff808080 0xff808080

You can see that the first two pixels have changed to be opaque nearly-white and opaque nearly-gray, which is much better than opaque nearly-black!

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list