| 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 1e24a945f694ca207029653a8f68403182f80670..6ca4f7af27ec19df02bc99cf5c46f60a4b76714c 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 {
|
| @@ -2619,6 +2620,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:
|
|
|