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

Unified Diff: third_party/WebKit/Source/core/svg/SVGMaskElement.cpp

Issue 2708923011: Avoid duplicating the CSS property mapping for SVG pres. attrs. (Closed)
Patch Set: Created 3 years, 10 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/svg/SVGMaskElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGMaskElement.cpp b/third_party/WebKit/Source/core/svg/SVGMaskElement.cpp
index eadc802a5be4bdf41daaa42ffc5c33a91a2afc2f..11a3e617ee8ed2e673c58bc0edd8c0247cf1300d 100644
--- a/third_party/WebKit/Source/core/svg/SVGMaskElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGMaskElement.cpp
@@ -94,16 +94,16 @@ void SVGMaskElement::collectStyleForPresentationAttribute(
MutableStylePropertySet* style) {
SVGAnimatedPropertyBase* property = propertyFromAttribute(name);
if (property == m_x) {
- addPropertyToPresentationAttributeStyle(style, CSSPropertyX,
+ addPropertyToPresentationAttributeStyle(style, property->cssPropertyId(),
m_x->cssValue());
} else if (property == m_y) {
- addPropertyToPresentationAttributeStyle(style, CSSPropertyY,
+ addPropertyToPresentationAttributeStyle(style, property->cssPropertyId(),
m_y->cssValue());
} else if (property == m_width) {
- addPropertyToPresentationAttributeStyle(style, CSSPropertyWidth,
+ addPropertyToPresentationAttributeStyle(style, property->cssPropertyId(),
m_width->cssValue());
} else if (property == m_height) {
- addPropertyToPresentationAttributeStyle(style, CSSPropertyHeight,
+ addPropertyToPresentationAttributeStyle(style, property->cssPropertyId(),
m_height->cssValue());
} else {
SVGElement::collectStyleForPresentationAttribute(name, value, style);
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGImageElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGPathElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698