| Index: Source/core/paint/ObjectPainter.cpp
|
| diff --git a/Source/core/paint/ObjectPainter.cpp b/Source/core/paint/ObjectPainter.cpp
|
| index f4917cb744ca1fdce0422b95c4d9c2e324e54720..37886757c15136eb1bebe76af7fa091ca88faa3d 100644
|
| --- a/Source/core/paint/ObjectPainter.cpp
|
| +++ b/Source/core/paint/ObjectPainter.cpp
|
| @@ -66,9 +66,9 @@ void ObjectPainter::paintOutline(const PaintInfo& paintInfo, const LayoutRect& o
|
| if (useTransparencyLayer) {
|
| if (outlineStyle == SOLID) {
|
| Path path;
|
| + path.setWindRule(RULE_EVENODD);
|
| path.addRect(outer);
|
| path.addRect(inner);
|
| - graphicsContext->setFillRule(RULE_EVENODD);
|
| graphicsContext->setFillColor(outlineColor);
|
| graphicsContext->fillPath(path);
|
| return;
|
|
|