Index: third_party/WebKit/Source/core/html/HTMLAreaElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp b/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp |
index d1e4275093816fc12ab0a3364dbbeea799af76ff..a1e5bac100c95e1aaf1e039b8c5fee43fbeb5315 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp |
@@ -156,6 +156,7 @@ Path HTMLAreaElement::getRegion(const LayoutSize& size) const |
for (int i = 1; i < numPoints; ++i) |
path.addLineTo(FloatPoint(clampCoordinate(m_coords[i * 2]), clampCoordinate(m_coords[i * 2 + 1]))); |
path.closeSubpath(); |
+ path.setWindRule(RULE_EVENODD); |
} |
break; |
case Circle: |