Index: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
index 827e58b58954e306467a324ed87013581aaeaf2e..a3ca1710916b64dec6c63c5f60331d81b16bf1b6 100644 |
--- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
+++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
@@ -57,6 +57,7 @@ |
#include "core/style/PathStyleMotionPath.h" |
#include "core/style/QuotesData.h" |
#include "core/style/ShadowList.h" |
+#include "core/svg/SVGPathUtilities.h" |
#include "platform/LengthFunctions.h" |
namespace blink { |
@@ -2623,6 +2624,8 @@ PassRefPtrWillBeRawPtr<CSSValue> ComputedStyleCSSValueMapping::get(CSSPropertyID |
case CSSPropertyMarker: |
// the above properties are not yet implemented in the engine |
return nullptr; |
+ case CSSPropertyD: |
+ return svgStyle.d(); |
case CSSPropertyCx: |
return zoomAdjustedPixelValueForLength(svgStyle.cx(), style); |
case CSSPropertyCy: |