From a4732abb80b7431b3f73d39df137b6bc953f61cf Mon Sep 17 00:00:00 2001 From: "brettw@google.com" Date: Thu, 18 Dec 2008 20:36:15 +0000 Subject: Grab the file that fixes the box shadow size. This was supposed to be in the text shadow patch, and is why the layout tests are failing. Review URL: http://codereview.chromium.org/15045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7249 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webkit/port') 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(); } -- cgit v1.1