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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.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/LayoutSVGResourceClipper.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
index be03d5aa916ed184fa358b7cc55cf7029ba5287f..dbbcc326ba74973d1db61af9c6f3495c5a4e47eb 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
@@ -52,7 +52,7 @@ ClipStrategy determineClipStrategy(const SVGGraphicsElement& element) {
return ClipStrategy::None;
const ComputedStyle& style = layoutObject->styleRef();
if (style.display() == EDisplay::None ||
- style.visibility() != EVisibility::Visible)
+ style.visibility() != EVisibility::kVisible)
return ClipStrategy::None;
ClipStrategy strategy = ClipStrategy::None;
// Only shapes, paths and texts are allowed for clipping.

Powered by Google App Engine
This is Rietveld 408576698