summaryrefslogtreecommitdiffstats
path: root/webkit/port
diff options
context:
space:
mode:
authorbrettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-18 20:36:15 +0000
committerbrettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-18 20:36:15 +0000
commita4732abb80b7431b3f73d39df137b6bc953f61cf (patch)
tree7999b70fc1c2913375768cf676161de67189a4d5 /webkit/port
parent03056eabf232be35af3c2f040cd807d43b67dc17 (diff)
downloadchromium_src-a4732abb80b7431b3f73d39df137b6bc953f61cf.zip
chromium_src-a4732abb80b7431b3f73d39df137b6bc953f61cf.tar.gz
chromium_src-a4732abb80b7431b3f73d39df137b6bc953f61cf.tar.bz2
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
Diffstat (limited to 'webkit/port')
-rw-r--r--webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp2
1 files changed, 1 insertions, 1 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();
}