| Index: Source/core/svg/SVGLengthContext.h
|
| diff --git a/Source/core/svg/SVGLengthContext.h b/Source/core/svg/SVGLengthContext.h
|
| index 3e2ba449e39ff51955464b4e114178830188c6b6..7ac95c59ae1a36ae08b96b0766ae75dcb8b0e98d 100644
|
| --- a/Source/core/svg/SVGLengthContext.h
|
| +++ b/Source/core/svg/SVGLengthContext.h
|
| @@ -43,7 +43,8 @@ enum SVGLengthType {
|
| LengthTypeIN,
|
| LengthTypePT,
|
| LengthTypePC,
|
| - LengthTypeREMS
|
| + LengthTypeREMS,
|
| + LengthTypeCHS
|
| };
|
|
|
| enum class SVGLengthMode {
|
| @@ -89,6 +90,9 @@ private:
|
| float convertValueFromUserUnitsToREMS(float value) const;
|
| float convertValueFromREMSToUserUnits(float value) const;
|
|
|
| + float convertValueFromUserUnitsToCHS(float value) const;
|
| + float convertValueFromCHSToUserUnits(float value) const;
|
| +
|
| RawPtrWillBeMember<const SVGElement> m_context;
|
| };
|
|
|
|
|