| Index: Source/core/svg/SVGLengthContext.h
|
| diff --git a/Source/core/svg/SVGLengthContext.h b/Source/core/svg/SVGLengthContext.h
|
| index 5642edb2db1cab31f98bd28a3cd3fb74db5b08a4..1e4d24c112e8e7ff261d3fbc547cc5f3d99c3544 100644
|
| --- a/Source/core/svg/SVGLengthContext.h
|
| +++ b/Source/core/svg/SVGLengthContext.h
|
| @@ -42,7 +42,8 @@ enum SVGLengthType {
|
| LengthTypeMM,
|
| LengthTypeIN,
|
| LengthTypePT,
|
| - LengthTypePC
|
| + LengthTypePC,
|
| + LengthTypeREMS
|
| };
|
|
|
| enum class SVGLengthMode {
|
| @@ -85,6 +86,9 @@ private:
|
| float convertValueFromUserUnitsToEXS(float value) const;
|
| float convertValueFromEXSToUserUnits(float value) const;
|
|
|
| + float convertValueFromUserUnitsToREMS(float value) const;
|
| + float convertValueFromREMSToUserUnits(float value) const;
|
| +
|
| RawPtrWillBeMember<const SVGElement> m_context;
|
| };
|
|
|
|
|