Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(409)

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
index fbcb6a77b22ad6820443ca4fae82bbc18fb52dc4..e523e35d9c68ee4ada10d2ef03c9a976d9f4d258 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
@@ -278,7 +278,7 @@ bool LayoutSVGShape::nodeAtFloatPoint(HitTestResult& result,
bool LayoutSVGShape::nodeAtFloatPointInternal(const HitTestRequest& request,
const FloatPoint& localPoint,
PointerEventsHitRules hitRules) {
- bool isVisible = (style()->visibility() == EVisibility::Visible);
+ bool isVisible = (style()->visibility() == EVisibility::kVisible);
if (isVisible || !hitRules.requireVisible) {
const SVGComputedStyle& svgStyle = style()->svgStyle();
WindRule fillRule = svgStyle.fillRule();

Powered by Google App Engine
This is Rietveld 408576698