Changeset 49799 in webkit


Ignore:
Timestamp:
Oct 19, 2009 12:19:10 PM (15 years ago)
Author:
ajwong@chromium.org
Message:

Forcefully set antialiasing for Chromium media controls.

Patch by Andrew Scherkus <scherkus@chromium.org> on 2009-10-19
Reviewed by NOBODY (OOPS!).

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

Before it was nondeterministiacally being enabled based on the previous state of GraphicsContext.

Covered by existing layout tests.

  • rendering/RenderMediaControlsChromium.cpp:

(WebCore::paintMediaSlider): Added setShouldAntialias(true).

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r49798 r49799  
     12009-10-19  Andrew Scherkus  <scherkus@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        Forcefully set antialiasing for Chromium media controls.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=30521
     8
     9        Before it was nondeterministiacally being enabled based on the previous state of GraphicsContext.
     10
     11        Covered by existing layout tests.
     12
     13        * rendering/RenderMediaControlsChromium.cpp:
     14        (WebCore::paintMediaSlider): Added setShouldAntialias(true).
     15
    1162009-10-19  Jens Alfke  <jens@mooseyard.com>
    217
  • trunk/WebCore/rendering/RenderMediaControlsChromium.cpp

    r49787 r49799  
    108108    // https://bugs.webkit.org/show_bug.cgi?id=30143
    109109    context->save();
     110    context->setShouldAntialias(true);
    110111    context->setStrokeStyle(SolidStroke);
    111112    context->setStrokeColor(style->borderLeftColor());
Note: See TracChangeset for help on using the changeset viewer.