diff options
-rw-r--r-- | webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp | 2 | ||||
-rw-r--r-- | webkit/tools/layout_tests/test_lists/tests_fixable.txt | 7 |
2 files changed, 2 insertions, 7 deletions
diff --git a/webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp b/webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp index fd7968b2..5271ccf 100644 --- a/webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp +++ b/webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp @@ -965,7 +965,7 @@ void GraphicsContext::setPlatformShadow(const IntSize& size, // TODO(tc): Should we have a max value for the blur? CG clamps at 1000.0 // for perf reasons. - SkDrawLooper* dl = new SkBlurDrawLooper(blur, width, height, c); + SkDrawLooper* dl = new SkBlurDrawLooper(blur / 2, width, height, c); platformContext()->setDrawLooper(dl); dl->unref(); } diff --git a/webkit/tools/layout_tests/test_lists/tests_fixable.txt b/webkit/tools/layout_tests/test_lists/tests_fixable.txt index d56b699..0781029 100644 --- a/webkit/tools/layout_tests/test_lists/tests_fixable.txt +++ b/webkit/tools/layout_tests/test_lists/tests_fixable.txt @@ -1797,10 +1797,5 @@ LINUX WIN : LayoutTests/fast/images/svg-as-relative-image.html = FAIL // Not quite sure what's going on here. Getting the builder green. LINUX : LayoutTests/fast/text/shadow-no-blur.html = FAIL -// Shadow failures from Brett's shadow changes. These probably just need -// rebaselining. (Note: they all fail on Linux, but the ones not marked Linux -// failures appear elsewhere). -LINUX WIN : LayoutTests/fast/box-shadow/basic-shadows.html = FAIL -WIN : LayoutTests/fast/repaint/box-shadow-h.html = FAIL -WIN : LayoutTests/fast/repaint/box-shadow-v.html = FAIL +// Brett broke this with his font rendering effect patch and needs to fix it. LINUX WIN : LayoutTests/svg/W3C-SVG-1.1/fonts-kern-01-t.svg = FAIL |