| Index: third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp
|
| index 7d74996e349af212c55a4e1695b598aa0b87ded6..281082b4d90ae3803598655ee2193b35771319f8 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp
|
| @@ -239,7 +239,7 @@ static bool definesTextLengthWithSpacing(const InlineFlowBox* start)
|
| void SVGTextLayoutEngine::layoutCharactersInTextBoxes(InlineFlowBox* start)
|
| {
|
| bool textLengthSpacingInEffect = m_textLengthSpacingInEffect || definesTextLengthWithSpacing(start);
|
| - TemporaryChange<bool> textLengthSpacingScope(m_textLengthSpacingInEffect, textLengthSpacingInEffect);
|
| + TemporaryChange<bool> textLengthSpacingScope(&m_textLengthSpacingInEffect, textLengthSpacingInEffect);
|
|
|
| for (InlineBox* child = start->firstChild(); child; child = child->nextOnLine()) {
|
| if (child->isSVGInlineTextBox()) {
|
|
|